function sendmsg()
{
  $('#sent').text('Sending...');
  $.post("ajax.php", $("#contact").serialize(), function(data)
  {
     $('#sent').text(data);
     $('#contact')[0].reset();
  });
  return false;
}
