
/*function rollover() {
  if (!document.getElementById) return
  var imgOrSrc;
  var imgPreload = new Array();
  var images = document.getElementsByTagName('img');
  for (var i = 0; i < images.length; i++) {
    if (images[i].getAttribute('rsrc')) {
      imgPreload[i] = new Image();
      imgPreload[i].src = images[i].getAttribute('rsrc');
      images[i].onmouseover = function() {
        imgOrSrc = this.getAttribute('src');
        this.setAttribute('src',this.getAttribute('rsrc'))
      }
      images[i].onmouseout = function() {
        this.setAttribute('src',imgOrSrc)
      }
    }
  }
} */

function rollover() {
  cacheImage1 = new Image;
  cacheImage1.src = "home2.gif";
  cacheImage2 = new Image;
  cacheImage2.src = "aboutus2.gif";
  cacheImage3 = new Image;
  cacheImage3.src = "contact2.gif";
  cacheImage4 = new Image;
  cacheImage4.src = "incentives2.gif";
  cacheImage5 = new Image;
  cacheImage5.src = "profile2.gif";
  cacheImage1 = new Image;
  cacheImage1.src = "specialties2.gif";
}

function check()
{
  alert("The ability to login to change account information, view account status and see other aspects of this website will be available by the end of October.");
}

/*
function check()
{
  var frm = document.forms.login;
 
  // check input non-empty
  if( frm.elements.pwd.value=="" )
  {
    alert("Password can not be empty. Please enter value and try again.");
    return;
  }  
  if( !test_email(frm.elements.email.value) )
  {
    alert("Email is incorrect. Please try again.");
    return;
  }
  frm.action="login_api.php";
  frm.submit(); 
} */