// JavaScript Document
function searchFocus () {
	if (document.getElementById('s').value == 'search our site') {
		document.getElementById('s').value = '';
	}
	document.getElementById('s').style.backgroundColor='#82A0B4';
	document.getElementById('s').style.color='#39464e';
	document.getElementById('search-box').style.backgroundPosition = '-764px -40px';
}
function searchBlur() {
	if (document.getElementById('s').value == '') {
		document.getElementById('s').value = 'search our site';
	}
	document.getElementById('s').style.backgroundColor='#ffffff';
	document.getElementById('search-box').style.backgroundPosition = '-764px -0px';
}