$(document).ready(function(){
	$("ul.nav li").hoverIntent(function() {
		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).children(".subnav").show(); //Drop down the subnav on click
		},
	function(){
		$(this).parent().find("ul.subnav").hide(); //When the mouse hovers out of the subnav, move it back up
	});
	
	$("#first_name").click(function(){
		if($(this).attr("value")=="First Name"){
			$(this).attr("value", "");
		}
	});
	$("#first_name").blur(function(){
		if($(this).attr("value")==""){
			$(this).attr("value", "First Name");
		}
	});
	$("#email").click(function(){
		if($(this).attr("value")=="E-mail Address"){
			$(this).attr("value", "");
		}
	});
	$("#email").blur(function(){
		if($(this).attr("value")==""){
			$(this).attr("value", "E-mail Address");
		}
	});
});
