jQuery(document).ready(function(){
	$("ul#top-nav").superfish({
    		autoArrows: true,
		animation: {height:'show'},
		speed: 'fast',
		delay: 300
	});
	
	$("#email").focus(function () {
		if($(this).val() == "Enter Email Address")
		{
			$(this).val("");
		}
	});

	$("#email").blur(function () {
		if($(this).val() == "")
		{
			$(this).val("Enter Email Address");
		}
	});

});

