
  $(document).ready(function(){

        $(".contactLink").click(function(){
            if ($("#contactForm").is(":hidden")){
                $("#contactForm").slideDown("slow");
            }
            else{
                $("#contactForm").slideUp("slow");
            }
        });

    });

    function closeForm(){
        $("#messageSent").show("fast");
        setTimeout('$("#messageSent").hide(); $("#contactForm").slideUp("slow")', 4000);
   }

$(document).ready(function(){
$("#ajax-contact-form").submit(function(){

var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "contact.php",
   data: str,
   success: function(msg){

$("#note").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
result = '<p>Thank you for your enquiry. <br>We are currently reviewing your details and will contact you by email or phone in 24 hours.</p>';
closeForm();
$("#fields").hide();
}
else
{
result = msg;
}

$(this).html(result);

});

}

 });

return false;

});

});

