$(document).ready(function(){

$('.catNav ul li').hover(function() {
  $(this).addClass('selected');
}, function() {
  $(this).removeClass('selected');
});
});

function check()
{
  if(document.thecontactform.fname.value.length==0)
  {
   alert('Please enter your first name');
   document.thecontactform.fname.focus();
   return;
  }
  if(document.thecontactform.lname.value.length==0)
  {
   alert('Please enter your last name');
   document.thecontactform.lname.focus();
   return;
  }
  if(document.thecontactform.email.value.length==0)
  {
   alert('Please enter your email address');
   document.thecontactform.email.focus();
   return;
  }
  if(document.thecontactform.subject.value.length==0)
  {
   alert('Please enter a subject for the email');
   document.thecontactform.subject.focus();
   return;
  }
  if(document.thecontactform.message.value.length==0)
  {
   alert('Please enter your inquiry');
   document.thecontactform.message.focus();
   return;
  }
document.thecontactform.submit();
}
