if (document.images) {
  main_off = new Image(); main_off.src = "../Images/Home.jpg";
  main_on = new Image(); main_on.src = "../Images/Home_on.jpg";
  call_off = new Image(); call_off.src = "../Images/Callforpapers.jpg";
  call_on = new Image(); call_on.src = "../Images/Callforpapers_on.jpg";
  advance_off = new Image(); advance_off.src = "../Images/Advance.jpg";
  advance_on = new Image(); advance_on.src = "../Images/Advance_on.jpg";
  local_on = new Image(); local_on.src = "../Images/Local_on.jpg";
  local_off = new Image(); local_off.src = "../Images/Local.jpg";
  contact_on =  new Image(); contact_on.src =  "../Images/Contact_on.jpg";
  contact_off = new Image(); contact_off.src = "../Images/Contact.jpg";
  submit_on =   new Image(); submit_on.src =   "../Images/Submission_on.jpg";
  submit_off =  new Image(); submit_off.src =  "../Images/Submission.jpg";
  committees_on = new Image(); committees_on.src = "../Images/Committees_on.jpg";
  committees_off = new Image(); committees_off.src = "../Images/Committees.jpg";
  sponsor_on = new Image(); sponsor_on.src = "../Images/Sponsors_on.jpg";
  sponsor_off = new Image(); sponsor_off.src = "../Images/Sponsors.jpg";

  hotel_on = new Image(); hotel_on.src = "../Images/Registration_on.jpg";
  hotel_off = new Image(); hotel_off.src = "../Images/Registration.jpg";
  hotel2_on = new Image(); hotel2_on.src = "../Images/Hotel_on.jpg";
  hotel2_off = new Image(); hotel2_off.src = "../Images/Hotel.jpg";
  faq_on = new Image(); faq_on.src = "../Images/faq_on.gif";
  faq_off = new Image(); faq_off.src = "../Images/faq.gif";

}


function mouseOver(name,image) {
  if (document.images) {
    document[name].src= eval(image + "_on.src");
  }
}

function mouseOut(name,image) {
  if (document.images) {
    document[name].src= eval(image + "_off.src");
  }
}

