$(document).ready(function() { 						   
	$("#main_nav ul li").hover(
		function() { $("ul", this).css("display", "block");},
		function() { $("ul", this).css("display", "none");}
	);
	$("#sub_nav li a:first").css("padding-top", "0");
	$("#sub_nav li a:last").css({"padding-bottom": "0","border": "none"});

});

function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}

function resetDefault(el) {
  if (el.value=="") el.value = "Search"
}






