// JavaScript Document
$(document).ready(function()
{
	$("#contact").validate(
	{
			submitHandler: function(form) {
				$("#contact .submit").after("<img src=\"/images/loading.gif\" />");
				$("#contact .submit").remove();
				jQuery(form).ajaxSubmit({
					target: "#contact",
				  success: function(t) {
									
				  }
					
				});				

			}
	});
	$("#message").bind("focus", grow );
	$("#message").bind("mouseover", grow );	
	$("#message").bind("mouseout", function()
	 {
	
		 $(this).css("height",40);
		 $(this).css("width",160);		 
		 
	 });	
});
function grow()
	 {
		 $(this).css("height",100);
		 $(this).css("width",200);	

	 }