$(function(){
	 $.backstretch("images/bg.jpg");
	 $.localScroll();
	 
	 $("#contact-form").submit(function(){

		var str = $(this).serialize();
		
	   $.ajax({
		   type: "POST",
		   url: "/mailer.php",
		   data: str,
		   success: function(msg){
		
				$("#contact-form").ajaxComplete(function(event, request, settings){
				
					if(msg == 'ok') // Message Sent? Show the 'Thank You' message and hide the form
					{
						result = '<p><strong>Thank you!</strong> We will be in touch</p>';
						$("#contact-form").fadeOut();
					} else {
						result = msg;
					}
					
					$('#answer').html(result);
					
				});
		
			}

		});
		
		return false;
		
		});
});

