<!--
//This script changes the graphic on mouse over and a graphic in
//another part of the screen

{
alt0 = new Image();
alt0.src = "images/desc.gif";

alt1 = new Image();
alt1.src = "images/desc_ab.gif";

alt2 = new Image();
alt2.src = "images/desc_serv.gif";

alt3 = new Image();
alt3.src = "images/desc_link.gif";

alt4 = new Image();
alt4.src = "images/desc_cont.gif";

alt5 = new Image();
alt5.src = "images/desc_home.gif";


graphic1= new Image();
graphic1.src = "images/ab.gif";
graphic1on = new Image();
graphic1on.src = "images/ab_over.gif";

graphic2= new Image();
graphic2.src = "images/serv.gif";
graphic2on = new Image();
graphic2on.src = "images/serv_over.gif";

graphic3= new Image();
graphic3.src = "images/links.gif";
graphic3on = new Image();
graphic3on.src = "images/links_over.gif";

graphic4= new Image();
graphic4.src = "images/cont.gif";
graphic4on = new Image();
graphic4on.src = "images/cont_over.gif";

graphic5= new Image();
graphic5.src = "images/home.gif";
graphic5on = new Image();
graphic5on.src = "images/home_over.gif";

}

function newImage(arg) {

     if (document.images) {

          rslt = new Image();

          rslt.src = arg;

          return rslt;

     }

}

function imageChange(imageID,imageName,imageID2,imageName2) {


{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}

}

var preloadFlag = false;

function preloadImages() {

     if (document.images) {

          homer = newImage("images/home.gif");

          homeover = newImage("images/home_over.gif");

          contact = newImage("images/cont.gif");

          contactover = newImage("images/cont_over.gif");

          links = newImage("images/links.gif");

          linksover = newImage("images/links_over.gif");

          services = newImage("images/serv.gif");

          servicesover = newImage("images/serv_over.gif");

          about = newImage("images/ab.gif");

          aboutover = newImage("images/ab_over.gif");
		 
          head = newImage("images/head.gif");

          preloadFlag = true;

     }

}

-->

