$(document).ready(function()
{	
	$("#frmAskTheVet").validate({
		rules:{
			email:{
				required: true,
				email: true
			},
			comments:{
				required: true
			}
		}
	});

	$('form#frmAskTheVet').submit(function()
	{
		if($("#frmAskTheVet").valid())
		{
			$.post("/pet-care/ask-the-vet/vetSubmit.php", $('#frmAskTheVet').serialize(), function(data)
			{
				$('#askVet').html(data);
			});
			return false;
		}	
	});
	$('#logo').pngFix();
	$('#local').pngFix();
	$(document).pngFix();
});


