
//gombok forrásképei
g01_on = new Image(); g01_on.src = "images/menu_hu/g01_on.jpg";
g01_off = new Image(); g01_off.src = "images/menu_hu/g01_off.jpg";
g02_on = new Image(); g02_on.src = "images/menu_hu/g02_on.jpg";
g02_off = new Image(); g02_off.src = "images/menu_hu/g02_off.jpg";
g03_on = new Image(); g03_on.src = "images/menu_hu/g03_on.jpg";
g03_off = new Image(); g03_off.src = "images/menu_hu/g03_off.jpg";
g04_on = new Image(); g04_on.src = "images/menu_hu/g04_on.jpg";
g04_off = new Image(); g04_off.src = "images/menu_hu/g04_off.jpg";
g05_on = new Image(); g05_on.src = "images/menu_hu/g05_on.jpg";
g05_off = new Image(); g05_off.src = "images/menu_hu/g05_off.jpg";


function Mouse_on(imgname)
{
	document[imgname].src=eval(imgname+"_on.src");
        window.status = 'Open';
        
}

function Mouse_off(imgname)
{
        document[imgname].src=eval(imgname+"_off.src");
        window.status = '';        
}

