$().ready(function() {
	
	$("ul.sf-menu").superfish({
	    animation:{opacity:'show'},
    	speed:'fast',
    	autoArrows:false,
	    dropShadows:false,
	    delay:400
	}).find('ul'); 
	$("ul.sf-menu a").attr('title', '');
	$("#email").focus(function() {
		var value = $(this).getValue();
		if (value == "Enter your email address") {
			$(this).setValue('');
		}
	});
	$("#email").blur(function() {
		var value = $(this).getValue();
		if (value == '') {
			$(this).setValue('Enter your email address');
		}
	});
});