function clickclear(thisfield, defaulttext) {
	if (thisfield.value.toLowerCase() == defaulttext.toLowerCase()) {
		thisfield.value = "";
	}
}

function clickrecall(thisfield, defaulttext) {
	if (thisfield.value == "") {
		thisfield.value = defaulttext;
	}
}

$(document).ready(function(){
	$(".hovermenu a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "90"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "90"}, "fast");
	});
	$(".toolNavNew a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "35"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "35"}, "fast");
	});
	$(".hoverlogo a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "90"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "90"}, "fast");
	});
});
		
function blnInputChecked(sString) {
	if (sString = 's') {
		var sMsg = "Please enter a search term";
		if (document.forms["simple_search_header"].elements[0].value.toLowerCase() == "search") {
			if (sMsg != "") {
				alert(sMsg);
				}
			return false;
		}
		else {
			return true;
		}
	}
}
