$(document).ready(function() {
	
	$("#testimonials a").css("display","inline-block");
	
	$("#testimonials a").qtip({
		content: false,
	   	position: { corner: { target: 'centerMiddle', tooltip: 'bottomLeft' }  },
	   	style: { 
		  border: { color: '#69D2D4', radius: 5, width: 7 },
	      name: 'light',
		  padding: 5,
	      textAlign: 'left',
	      tip: 'bottomLeft',
		  width: 200
	   	}
	});
	
	
	$("#contact").submit(function(){

		$("#result").hide();
		
		$("#loading").ajaxStart(function(){
		   $(this).show();
		 });
		
		// 'this' refers to the current submitted form
		var str = $(this).serialize();
		$.ajax({
   			type: "POST",
   			url: "contact.php",
   			data: str,
   			success: function(msg){

				$("#result").fadeIn();
				$("#result").ajaxComplete(function(event, request, settings){

					$("#loading").hide();
					
					if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
					{
						result = '<div class="notice"><h2>Your message has been sent. Thank you!</h2> <p>If you have an urgent enquiry please give us a call on 0808 1200 612, we are here to help right now!</p></div>';
						$("#contact").hide();
					}
					else
					{
						result = msg;
					}

					$(this).html(result);

				});

			}

 		});

		return false;

	});


	
});
