//This script changes the graphic on mouse over and a graphic in
//another part of the screen

if (document.images) {       //if image object is available     
// MouseOver Images


img0alt = new Image();          
img0alt.src = "/images/titbarup0.gif";


img1on = new Image();
img1on.src = "/images/icona1on.gif";
img1off = new Image();          
img1off.src = "/images/icona1off.gif";
img1alt = new Image();          
img1alt.src = "/images/titbarup1.gif";

img2on = new Image();
img2on.src = "/images/icona2on.gif";
img2off = new Image();          
img2off.src = "/images/icona2off.gif";
img2alt = new Image();          
img2alt.src = "/images/titbarup2.gif";

img3on = new Image();
img3on.src = "/images/icona3on.gif";
img3off = new Image();          
img3off.src = "/images/icona3off.gif";
img3alt = new Image();          
img3alt.src = "/images/titbarup3.gif";

img4on = new Image();
img4on.src = "/images/icona4on.gif";
img4off = new Image();          
img4off.src = "/images/icona4off.gif";
img4alt = new Image();          
img4alt.src = "/images/titbarup4.gif";

img5on = new Image();
img5on.src = "/images/icona5on.gif";
img5off = new Image();          
img5off.src = "/images/icona5off.gif";
img5alt = new Image();          
img5alt.src = "/images/titbarup5.gif";

img6on = new Image();
img6on.src = "/images/icona6on.gif";
img6off = new Image();          
img6off.src = "/images/icona6off.gif";
img6alt = new Image();          
img6alt.src = "/images/titbarup6.gif";

img7on = new Image();
img7on.src = "/images/icona7on.gif";
img7off = new Image();          
img7off.src = "/images/icona7off.gif";
img7alt = new Image();          
img7alt.src = "/images/titbarup7.gif";

img8on = new Image();
img8on.src = "/images/icona8on.gif";
img8off = new Image();          
img8off.src = "/images/icona8off.gif";
img8alt = new Image();          
img8alt.src = "/images/titbarup8.gif";

img9on = new Image();
img9on.src = "/images/icona9on.gif";
img9off = new Image();          
img9off.src = "/images/icona9off.gif";
img9alt = new Image();          
img9alt.src = "/images/titbarup9.gif";


}

function imgOn(imgName) {
        if (document.images) {
	    document.images.img0.src = eval(imgName + "alt.src"); 
            document[imgName].src = eval(imgName + "on.src");        }
			}
			
function imgOff(imgName) {
        if (document.images) {
	    document.images.img0.src = eval("img0alt.src"); 
            document[imgName].src = eval(imgName + "off.src");        }

			}
		

			//-->