// JavaScript Document
$(document).ready(function(){
  var submitLink = document.getElementById("submit");
  if(submitLink)//To only act on the "contact" page, all other pages has submitLink = NULL
  {
	  submitLink.onclick = function(){
		  document.forms[0].submit();
		  return false;
	  }//End onclick
  }
})