jQuery(function(){
		$("#contact_background form").submit(function() {
		$(this).find("input[type=submit]").hide();
		$(this).find("#ajax_loader").show();
		$.post("/index/mail", $(this).serialize(),function(data){
				if(data == "false"){
					alert("אירעה שגיאה בשליחת ההודעה. אנא נסו שנית מאוחר יותר.");
					$("#contact_background form input[type=submit]").show();
					$("#ajax_loader").hide();
				}
				else
				{
					$("#contact_background form").animate({
						opacity: 0
						}, 1000, function() {
							$('#contact_background form').html('<div id="thankYou"><p>הודעתך נשלחה בהצלחה!</p></div>');
							$('#contact_background form').animate({
								opacity: 1
								}, 1000, function() {
								// Animation complete.
							  });
					  });
					
			
				}
		});
		
		return false;
	});
	
		
	
});


