$(document).ready(function(){
	$('#contact-form').jqTransform();

	$("button").click(function(){

		$(".formError").hide();

	});

	var use_ajax=true;
	$.validationEngine.settings={};

	$("#contact-form").validationEngine({
		inlineValidation: false,
		promptPosition: "centerRight",
		success :  function(){use_ajax=true},
		failure : function(){use_ajax=false;}
	 })

	$("#contact-form").submit(function(e){
			
			if(use_ajax)
			{
				$('#loading').css('visibility','visible');
				$.post('submit-enews.php',$(this).serialize()+'&ajax=1',
				
					function(data){

						{
							$("#contact-form").hide('slow').after('<p style="font-size:12px; font-weight: bold; margin-left:20px; width:260px; ">Thank you for signing up to our eNewsletter.</p><p style="font-size:12px; margin-left:20px; width:260px;">You will get the latest news on our products and promotions. Your email will be secured.</p>');
						}
						
						$('#loading').css('visibility','hidden');
					}
				
				);
			}
			e.preventDefault();
	})

});
