function call(){
document.myform.submit();
}
function over(n,p){
 for(i=1;i<=7;i++)
 {if(i==n){
   document.getElementById(i).className="movePointerStyle";
  }
  else{ document.getElementById(i).className="nonPointerStyle";
  }
  document.getElementById(p).className="pointerStyle";
 }
}
function out(n,p){
 for(i=1;i<=7;i++)
 {if(i==n){
   document.getElementById(i).className="nonPointerStyle";
  }
  else{ document.getElementById(i).className="nonPointerStyle";
  }
  document.getElementById(p).className="pointerStyle";
 }
}

function clicks(p){
 switch(p){
  case 1: window.location.href="index.html";break;
  case 2: window.location.href="html/aboutus.html";break;
  case 3: window.location.href="html/products.html";break;
  case 4: window.location.href="html/services.html";break;
  case 5: window.location.href="html/carrers.html";break;
  case 6: window.location.href="html/news.html";break;
  case 7: window.location.href="html/contact.html";break;
 }
}