window.name = "opener";

	
		function clickclear(thisfield, defaulttext) {
			if (thisfield.value == defaulttext) {
				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");
			});
		});