// JavaScript Document
if (document.images){
    img0on = new Image( ); img0on.src = "images/top1_on.jpg";
    img0off = new Image( ); img0off.src = "images/top1.jpg";

    img1on = new Image( ); img1on.src = "images/top2_on.jpg";
    img1off = new Image( ); img1off.src = "images/top2.jpg";

    img2on = new Image( ); img2on.src = "images/top3_on.jpg";
    img2off = new Image( ); img2off.src = "images/top3.jpg";

    img3on = new Image( ); img3on.src = "images/top4_on.jpg";
    img3off = new Image( ); img3off.src = "images/top4.jpg";

    img4on = new Image( ); img4on.src = "images/top5_on.jpg";
    img4off = new Image( ); img4off.src = "images/top5.jpg";

    img5on = new Image( ); img5on.src = "images/top6_on.jpg";
    img5off = new Image( ); img5off.src = "images/top6.jpg";
	
    img6on = new Image( ); img6on.src = "images/hanter_on.jpg";
    img6off = new Image( ); img6off.src = "images/hanter_off.jpg";
	
    img7on = new Image( ); img7on.src = "images/keundo_logo.jpg";
    img7off = new Image( ); img7off.src = "images/keundo_off.jpg";
	
	img8on = new Image( ); img8on.src = "images/top7_on.jpg";
    img8off = new Image( ); img8off.src = "images/top7.jpg";
	
	img9on = new Image( ); img9on.src = "images/top8_on.jpg";
    img9off = new Image( ); img9off.src = "images/top8.jpg";
	
	img11on = new Image( ); img11on.src = "images/ccw_on.jpg";
    img11off = new Image( ); img11off.src = "images/ccw_off.jpg";
	
	img20on = new Image( ); img20on.src = "img/printers_on.png";
    img20off = new Image( ); img20off.src = "img/printers.png";
	
	img21on = new Image( ); img21on.src = "img/frezi_on.png";
    img21off = new Image( ); img21off.src = "img/frezi.png";
	
	img22on = new Image( ); img22on.src = "img/coaters_on.png";
    img22off = new Image( ); img22off.src = "img/coaters.png";
	
	img23on = new Image( ); img23on.src = "img/engravers_on.png";
    img23off = new Image( ); img23off.src = "img/engravers.png";
	
	img24on = new Image( ); img24on.src = "img/stiropor_on.png";
    img24off = new Image( ); img24off.src = "img/stiropor.png";
                }

function imgAct(imgName) {
    if (document.images) {
        document[imgName].src = eval(imgName + "on.src");
    }
}
function imgInact(imgName){
    if (document.images) {
        document[imgName].src = eval(imgName + "off.src");
    }
	}