<!--
if (document.images != null)
{       var currentImg = "nothing"
        preLoad();
}
function preLoad()
{       
        nav1_up = new Image(130,15);
        nav1_dn = new Image(130,15);
        nav1_up.src = "images/navbutton-home.jpg";
        nav1_dn.src = "images/navbutton-home_on.jpg";
		
        nav2_up = new Image(130,15);
        nav2_dn = new Image(130,15);
        nav2_up.src = "images/navbutton-services.jpg";
        nav2_dn.src = "images/navbutton-services_on.jpg";
		
        nav3_up = new Image(130,15);
        nav3_dn = new Image(130,15);
        nav3_up.src = "images/navbutton-specialoffer.jpg";
        nav3_dn.src = "images/navbutton-specialoffer_on.jpg";
		
		
        nav4_up = new Image(130,15);
        nav4_dn = new Image(130,15);
        nav4_up.src = "images/navbutton-testimonials.jpg";
        nav4_dn.src = "images/navbutton-testimonials_on.jpg";
		
		nav5_up = new Image(130,15);
        nav5_dn = new Image(130,15);
        nav5_up.src = "images/navbutton-contact.jpg";
        nav5_dn.src = "images/navbutton-contact_on.jpg";
		
		

		                }

function rollover(img,what)
{
        if (document.images != null)
        {
                        if(what == "over")        
                                swapImg = eval(img + "_dn.src");
                        if(what == "out")
                                swapImg = eval(img + "_up.src");
                        document [img].src = swapImg;
        }

  }
 -->
