if (document.images) {
			homeon = new Image();
            homeon.src = "/images/menu/home_on.gif";
			homeoff = new Image();
            homeoff.src = "/images/menu/home_off.gif";
			memberson = new Image();
            memberson.src = "/images/menu/members_on.gif";
			membersoff = new Image();
            membersoff.src = "/images/menu/members_off.gif";
			merchon = new Image();
            merchon.src = "/images/menu/merch_on.gif";
			merchoff = new Image();
            merchoff.src = "/images/menu/merch_off.gif";
			soundson = new Image();
            soundson.src = "/images/menu/sounds_on.gif";
			soundsoff = new Image();
            soundsoff.src = "/images/menu/sounds_off.gif";
			scheduleon = new Image();
            scheduleon.src = "/images/menu/schedule_on.gif";
			scheduleoff = new Image();
            scheduleoff.src = "/images/menu/schedule_off.gif";
			contacton = new Image();
            contacton.src = "/images/menu/contact_on.gif";
			contactoff = new Image();
            contactoff.src = "/images/menu/contact_off.gif";
			
			
}

function img_act(imgName) {
	if (document.images){
    	imgOn = eval(imgName + "on.src");
        document [imgName].src = imgOn;
    }
}

function img_end(imgName) {
	if (document.images){
    	imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
    }
}

function showImage(picStr, width, height){
	var args = "height="+height+",width="+width+",status=no,toolbar=no,menubar=no,location=no";
	window.open("showImage.php?img="+picStr,null,args);
}