$(document).ready(function(){
	
	$("#nav li").mouseover(function(){
		$("#nav ul").hide();
		$("ul", this).show();								
	});
	
	$("#main").mouseover(function(){
		$("#nav_bucks ul").hide();
	});
	
	$("#email").focus(function(){
		if($(this).attr("value") == "Email"){
			$(this).attr("value", "");
		}
	});
	
	$("#email").blur(function(){
		if($(this).attr("value") == ""){
			$(this).attr("value", "Email");
		}
	});
	
	$("#name").focus(function(){
		if($(this).attr("value") == "Full Name"){
			$(this).attr("value", "");
		}
	});
	
	$("#name").blur(function(){
		if($(this).attr("value") == ""){
			$(this).attr("value", "Full Name");
		}
	});
	

});


