	 $(document).ready(function(){
       $('marquee').marquee();
       $('#cycle').cycle('fade');


 });

function sendEnquiry() 
{
	var name = $("#name").val();
	var email = $("#email").val();
	var location = $("#location").val();
	var phone = $("#phone").val();
	var type = $("#type").val();
	var message = $("#message").val();
	var counter = 0;
	
	$("#contactform input[type='text']").each(function() {
						if( $(this).val() == '' )
						{
							counter++;
							alert("You must fill in all fields to send an enquiry.");
							return false;
						}
	});
	if(counter == 0)
	{
		$.ajax({
		   type: "POST",
		   url: "contactsend.php",
		   data: "name="+name+"&email="+email+"&location="+location+"&phone="+phone+"&type="+type+"&message="+message,
		   success: function(msg){
			 $("#ajaxcform").html("Thank you for sending an enquiry to Sunshine Hot Water. One of our friendly customer service representatives will contact you as soon as possible.");
		   }
		 });
	}
}

