jQuery(document).ready(function(){
	
	$('#contactform').submit(function(){
	
		var action = $(this).attr('action');
		
		$("#message").slideUp(750,function() {
		$('#message').hide();
		
 		$('#submit')
			.after('<img src="http://futurelabz.com/wp-content/images/ajax-loader.gif" class="loader"/>')
			.attr('disabled','disabled');
		
		$.post(action, { 
			emailTo: "richa@futurelabz.com",
			emailFrom: $('#email').val(),
			subject: $('#subject').val(),
			message: "From: "+ $('#name').val() + "\r\n" + "Phone: "+ $('#phone').val() + "\r\n"+ "Subject: "+ $('#subject').val() + "\r\n" +"Comments: "+ $('#comments').val()
		},
			function(data){
				$('#message').html('<h1>Thanks for contacting !!! we will get back to you soon.</h1>');
				$('#message').slideDown('slow');
				$('#contactform img.loader').fadeOut('slow',function(){$(this).remove()});
				$('#contactform #submit').attr('disabled',''); 
				//$('#contactform').slideUp('slow');
			}
		);
		
		});
		
		return false; 
	
	});
	
});

