/* Copyright, Pinion Services Limited 2008 */

$(document).ready(function() {
  
  $("#contact").submit(function() {
    return checkFormIsValid();
  });

});

function checkFormIsValid()
{
  var valid = true;
 
  $("input").removeClass("hilight");
    
  if( $("#message").val() == "" )
  {
    $("#message").addClass("hilight");
    $("#message").focus();
    valid = false;
  }
  
  if( $("#telephone").val() == "" )
  {
    $("#telephone").addClass("hilight");
    $("#telephone").focus();
    valid = false;
  }
  
  if( $("#email").val() == "" )
  {
    $("#email").addClass("hilight");
    $("#email").focus();
    valid = false;
  }
  
  if( $("#name").val() == "" )
  {
    $("#name").addClass("hilight");
    $("#name").focus();
    valid = false;
  } 

  if(valid == false)
  {
    alert("Please ensure that you have completed all the required fields.");
  }

  return valid;
}

