// rollover script

if (document.images){

      	infoon = new Image();
        infoon.src = "images/infoover.gif";
        infooff = new Image();
        infooff.src = "images/info.gif";

        gearon = new Image();
        gearon.src = "images/gearover.gif";
        gearoff = new Image();
        gearoff.src = "images/gear.gif";
        
        bandson = new Image();
        bandson.src = "images/bandsover.gif";
        bandsoff = new Image();
        bandsoff.src = "images/bands.gif";
        
        contacton = new Image();
        contacton.src = "images/contactover.gif";
        contactoff = new Image();
        contactoff.src = "images/contact.gif";
		

}

function swapem(iname, gname) {
if (document.images){
        iname.src = gname.src;
}}
//-->
