var base = "";

if( document.images )

{
img1on  = new Image();  img1on.src  = base + "templates/gfx/menu/1ae.png";
img1off = new Image();  img1off.src = base + "templates/gfx/menu/1e.png";
}
{
img2on  = new Image();  img2on.src  = base + "templates/gfx/menu/p2ae.png";
img2off = new Image();  img2off.src = base + "templates/gfx/menu/p2e.png";
}
{
img3on  = new Image();  img3on.src  = base + "templates/gfx/menu/3ae.png";
img3off = new Image();  img3off.src = base + "templates/gfx/menu/3e.png";
}
{
img4on  = new Image();  img4on.src  = base + "templates/gfx/menu/p4ae.png";
img4off = new Image();  img4off.src = base + "templates/gfx/menu/p4e.png";
}
{
img5on  = new Image();  img5on.src  = base + "templates/gfx/menu/5ae.png";
img5off = new Image();  img5off.src = base + "templates/gfx/menu/5e.png";
}
{
img6on  = new Image();  img6on.src  = base + "templates/gfx/menu/p6ae.png";
img6off = new Image();  img6off.src = base + "templates/gfx/menu/p6e.png";
}
{
img7on  = new Image();  img7on.src  = base + "templates/gfx/menu/7ae.png";
img7off = new Image();  img7off.src = base + "templates/gfx/menu/7e.png";
}
{
img8on  = new Image();  img8on.src  = base + "templates/gfx/menu/p8ae.png";
img8off = new Image();  img8off.src = base + "templates/gfx/menu/p8e.png";
}
{
img9on  = new Image();  img9on.src  = base + "templates/gfx/menu/9ae.png";
img9off = new Image();  img9off.src = base + "templates/gfx/menu/9e.png";
}
{
img10on  = new Image();  img10on.src  = base + "templates/gfx/menu/p10ae.png";
img10off = new Image();  img10off.src = base + "templates/gfx/menu/p10e.png";
}

function imgOn( imgName, Opis )
{
if( document.images ) document[ imgName ].src = eval( imgName + "on.src" );
window.status = Opis;
}

function imgOff( imgName )
{
if( document.images ) document[ imgName ].src = eval( imgName + "off.src" );
window.status = "";
}
