$(document).ready(function(){  $('#menu li ul').css({    display: "none",    left: "auto",	top: "38px"  });  $('#menu li').hover(function() {    $(this)      .find('ul')      .stop(true, true)      .fadeIn('fast');  }, function() {    $(this)      .find('ul')      .stop(true,true)      .fadeOut('slow');  });       $('#contact_submit').click(function(){	var errors = '';	var name = $('#name').val();	var phone = $('#phone').val();	var email = $('#email').val();	if(name == '')errors+='Name Field.\n'	if(phone == '')errors+='Phone Field.\n'	if(email == '')errors+='Email Field.\n'	if (errors){		alert('The following required fields were left blank:\n'+errors);		return false;	}	});// end of #contact_submit});
