<!--  to hide script contents from old browsers

// Setting Browser type for using DHTML
//this file contains the Javascript for the animated buttons

        if (document.images) {            
            img1on = new Image();      
            img1on.src = "/images/top/top_on_13.gif"; 	       	 	      // Active Images
            img2on = new Image();
            img2on.src = "/images/top/top_on_15.gif";
            img3on = new Image();
            img3on.src = "/images/top/top_on_16.gif";
            img4on = new Image();
            img4on.src = "/images/top/top_on_17.gif";
            img5on = new Image();
            img5on.src = "/images/top/top_on_18.gif";
            img6on = new Image();
            img6on.src = "/images/top/top_on_19.gif";
            img7on = new Image();
            img7on.src = "/images/top/top_on_20.gif";
            img8on = new Image();
            img8on.src = "/images/top/top_on_21.gif";
            


            img1off = new Image(); 
            img1off.src = "/images/top/top_13.gif";              	      // Inactive Images
            img2off = new Image();
            img2off.src = "/images/top/top_15.gif";
            img3off = new Image();
            img3off.src = "/images/top/top_16.gif";
            img4off = new Image();
            img4off.src = "/images/top/top_17.gif";
            img5off = new Image();
            img5off.src = "/images/top/top_18.gif";
            img6off = new Image();
            img6off.src = "/images/top/top_19.gif";
            img7off = new Image();
            img7off.src = "/images/top/top_20.gif";
            img8off = new Image();
            img8off.src = "/images/top/top_21.gif";
           
					
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }

}

// end hiding -->


