// Quicksearch

function qs_focus() {
	if(document.getElementById('searchfield').value=='Quicksearch') {
		document.getElementById('searchfield').value='';
		document.getElementById('searchfield').style.color='#888';
		document.getElementById('searchfield').style.background='#fff';
	}
}
function qs_blur() {
	if(document.getElementById('searchfield').value=='') {
		document.getElementById('searchfield').value='Quicksearch';
		document.getElementById('searchfield').style.color='#888';
		document.getElementById('searchfield').style.background='#eaeaea';
	}
}
function qs_bu_blur() {
	document.getElementById('searchfield').style.color='#888';
	document.getElementById('searchfield').style.background='#eaeaea';
}
function qs_submit() {
	if(document.getElementById('searchfield').value=='' || document.getElementById('searchfield').value=='Quicksearch') {
		document.getElementById('searchfield').style.color='#9B1516';
		document.getElementById('searchfield').style.background='#fff';
		return (false);
	}
	return (true);
}

// Login

function lg_un_focus() {
	if(document.getElementById('login_un').value=='Username') {
		document.getElementById('login_un').value='';
		document.getElementById('login_un').style.color='#888';
		document.getElementById('login_un').style.background='#fff';
	}
}
function lg_pw_focus() {
	if(document.getElementById('login_pw').value=='') {
		document.getElementById('login_pw').value='';
		document.getElementById('login_pw').style.color='#888';
		document.getElementById('login_pw').style.background='#fff';
	}
}
function lg_un_blur() {
	if(document.getElementById('login_un').value=='') {
		document.getElementById('login_un').value='Username';
		document.getElementById('login_un').style.color='#888';
		document.getElementById('login_un').style.background='#eaeaea';
	}
}
function lg_pw_blur() {
	if(document.getElementById('login_pw').value=='') {
		document.getElementById('login_pw').value='';
		document.getElementById('login_pw').style.color='#888';
		document.getElementById('login_pw').style.background='#eaeaea';
	}
}
function lg_bu_blur() {
	document.getElementById('login_un').style.color='#888';
	document.getElementById('login_un').style.background='#eaeaea';
	document.getElementById('login_pw').style.color='#888';
	document.getElementById('login_pw').style.background='#eaeaea';
}
function lg_submit() {
	if(document.getElementById('login_un').value=='' || document.getElementById('login_un').value=='Username') {
		document.getElementById('login_un').style.color='#9B1516';
		document.getElementById('login_un').style.background='#fff';
		return (false);
	}
	if(document.getElementById('login_pw').value=='') {
		document.getElementById('login_pw').style.color='#9B1516';
		document.getElementById('login_pw').style.background='#fff';
		return (false);
	}
	return (true);
}

// Navigation

function nav_over(x) {
	if(document.getElementById(x).style.display=='none') {
		new Effect.BlindDown(x, { queue: { position: 'front', scope: x+'_scope', limit: 1 } });
	}
}