function loadImages() {
    
        HomeOn=new Image(113, 32);
        HomeOn.src="./images/buttons/home_or.gif";
        
        HomeOff=new Image(113, 33);
        HomeOff.src="./images/buttons/home_lav.gif";
        
        ServicesOn=new Image(113, 33);
        ServicesOn.src="./images/buttons/services_or.gif";
        
        ServicesOff=new Image(113, 33);
        ServicesOff.src="./images/buttons/services_lav.gif";
        
        ProdpacksOn=new Image(113, 33);
        ProdpacksOn.src="./images/buttons/prodpacks_or.gif";
        
        ProdpacksOff=new Image(113, 33);
        ProdpacksOff.src="./images/buttons/prodpacks_lav.gif";
        
        FormsdownOn=new Image(113, 33);
        FormsdownOn.src="./images/buttons/formsdown_or.gif";
        
        FormsdownOff=new Image(113, 33);
        FormsdownOff.src="./images/buttons/formsdown_lav.gif";
        
        LinksOn=new Image(113, 33);
        LinksOn.src="./images/buttons/links_or.gif";
        
        LinksOff=new Image(113, 33);
        LinksOff.src="./images/buttons/links_lav.gif";
        
        AboutOn=new Image(113, 33);
        AboutOn.src="./images/buttons/about_or.gif";
        
        AboutOff=new Image(113, 33);
        AboutOff.src="./images/buttons/about_lav.gif";
        
        QuoteOn=new Image(113, 33);
        QuoteOn.src="./images/buttons/quote_or.gif";
        
        QuoteOff=new Image(113, 33);
        QuoteOff.src="./images/buttons/quote_lav.gif";
}

// function to turn on rolled over graphic
function buttonRollon(pic) {
  document.images[pic].src=eval(pic + "On.src");

 }

// function to turn off rolled over graphic
function buttonRolloff(pic) {
  document.images[pic].src= eval(pic + "Off.src");	
 }
