<!--
           if (document.images) {
        
        producton = new Image();
        producton.src = "images/buttons/product_on.gif";
        productoff = new Image();
        productoff.src = "images/buttons/product_off.gif";
        
		accessorieson = new Image();
        accessorieson.src = "images/buttons/accessories_on.gif";
        accessoriesoff = new Image();
        accessoriesoff.src = "images/buttons/accessories_off.gif";
        
		textileson = new Image();
        textileson.src = "images/buttons/textiles_on.gif";
        textilesoff = new Image();
        textilesoff.src = "images/buttons/textiles_off.gif";
        
		arton = new Image();
        arton.src = "images/buttons/art_on.gif";
        artoff = new Image();
        artoff.src = "images/buttons/art_off.gif";




		}
        function img_act(imgName) {

              if (document.images) {
               imgOn = eval(imgName+"on.src");
               document [imgName].src = imgOn;
               }
       
       }
        function img_inact(imgName) {
            if (document.images) {
               imgOff = eval(imgName + "off.src");
               document [imgName].src = imgOff;
               }
       }
        	function pic_swap(pic) {
		if (document.images) {
		document.enlargement.src = "images/buttons/"+pic+".gif";
		}

}

        //-->