//engage on the page load
$(function() {
  //trigger ajax on submit
  $('#contact').submit( function(){

    //hide the form
    //$('#enquiryContainer').hide();

    //show the loading bar
    $('#loader').append($('.bar'));
    $('#bar').css({display:'block'});

    //send the ajax request
    $.get('sendContact.php',{name:$('#name').val(),
                      email:$('#email').val(),
                      message:$('#message').val() },

    //return the data
    function(data){
      //hide the graphic
      $('#bar').css({display:'none'});
	  $('#errors').text('');
	  $('#errors').fadeIn(3000);
      $('#errors').append(data);
    });

  //stay on the page
  
  return false;

  });
});
