//SubMenu on the Leftside
//

if (document.images) {

// set img

mn1on = new Image
mn2on = new Image
mn3on = new Image
mn4on = new Image
mn5on = new Image
zoomon = new Image
zoom2on = new Image
zoom3on = new Image

mn1off = new Image
mn2off = new Image
mn3off = new Image
mn4off = new Image
mn5off = new Image
zoomoff = new Image
zoom2off = new Image
zoom3off = new Image

mn1on.src = "image/topMenu/mn11.gif"
mn2on.src = "image/topMenu/mn12.gif"
mn3on.src = "image/topMenu/mn13.gif"
mn4on.src = "image/topMenu/mn14.gif"
mn5on.src = "image/topMenu/mn15.gif"
zoomon.src = "image/product/zoom11.gif"
zoom2on.src = "image/product/zoom11.gif"
zoom3on.src = "image/product/zoom11.gif"

mn1off.src = "image/topMenu/mn01.gif"
mn2off.src = "image/topMenu/mn02.gif"
mn3off.src = "image/topMenu/mn03.gif"
mn4off.src = "image/topMenu/mn04.gif"
mn5off.src = "image/topMenu/mn05.gif"
zoomoff.src = "image/product/zoom01.gif"
zoom2off.src = "image/product/zoom01.gif"
zoom3off.src = "image/product/zoom01.gif"

 }

// ON or OFF 


function mnOff(newImg) {
	if (document.images) {
		document[newImg].src=
		eval(newImg + "off.src")
		}
	}
	
function mnOn(newImg) {
	if (document.images) {
		document[newImg].src=
		eval(newImg + "on.src")
		}
	}


function popupWin(product) {
	popup = window.open('', 'ProductBig', 'width=380,height=340,status=no,scrollbars=no');
	popup.focus(); // bring our subwindow to the front
      	popup.location.href = product + '.html';
        if (popup.opener == null) popup.opener = window; 
	}
