jQuery(document).ready(function()
{	
	
		/*
	$('#message').hide();
	$('input#sendMessage').click(function()
	{
		if(!$('#contactus').validationEngine('attach'))
		{
			alert("gi");
			return false;
		}
		$('div.message').html('<p><img src="images/loading/loading5.gif" />Sending Message, Please Wait...</p>');
		$.post("lib/mail.php?cmd=mail", { fname: $('input#fname').val(), lname: $('#lname').val(), num_persons: $('#num_persons').val(), bottled_water: $('#bottled_water').val(), water_source: $('#water_source').val(), country: $('#country').val(), address: $('#address').val(), city: $('#city').val(), state: $('#state').val(), zip: $('#zip').val(), email: $('input#email').val(), phone: $('input#phone').val(), name_of_municipality: $("#name_of_municipality").val(), alt_phone: $('#alt_phone').val(), product: $('#product').val(), question: $('#question').val(), well_water_analysis: $('#well_water_analysis').val(), join_mailing_list: $('#join_mailing_list').val()}, 
		function(data) {
			if(data == 1) {
				$('input#name').val("");
				$('input#email').val("");
				$('input#phone').val("");
				$('input#contactMethod').val("");
				$('select#subject').val("");
				$('textarea#message').val("");
				$('div#loading').slideUp(500);
				setTimeout(function() { $('input#sendMessage').slideDown(); }, 500);
				$('li#li_err').css('color', 'green');  
				setTimeout(function() { $('span#message').html('<h4 style"color:green">Email Successfully Sent.<br /> We Will Contact You Within 24 Business Hours.</h4>'); }, 500);
				$('form#contactUs').reset();
				window.location = "index.php?p=mailsuccess";
			}  
			else if(data == 3)
			{
				$('#contactus').validationEngine();
			}
			else {
				$('div#debug').html(data);
				$('div.message').html('Error While Sending Email.');
			}				
		});
	});
	*/
	
	
	
}
);
