
<!--
if (document.images) {

    // Kartinka nomer 1
    Pic1on = new Image();
    Pic1on.src = "comp/binds/home1.gif"; 
    Pic1off = new Image();
    Pic1off.src = "comp/binds/home.gif";
    // Kartinka nomer 2
    Pic2on = new Image();
    Pic2on.src = "comp/binds/gallery1.gif";
    Pic2off = new Image();
    Pic2off.src = "comp/binds/gallery.gif";
    // Kartinka nomer 3
    Pic3on = new Image();
    Pic3on.src = "comp/binds/contact1.gif";
    Pic3off = new Image();
    Pic3off.src = "comp/binds/contact.gif";
    // Kartinka nomer 4
    Pic4on = new Image();
    Pic4on.src = "comp/binds/friends1.gif";
    Pic4off = new Image();
    Pic4off.src = "comp/binds/friends.gif";
    // Kartinka nomer 5
    Pic5on = new Image();
    Pic5on.src = "comp/bg/b32on.gif";
    Pic5off = new Image();
    Pic5off.src = "comp/bg/b32.gif";
    
}
function picon(imja) {
    if (document.images) {
       document[imja].src = eval(imja + "on.src");
}
}
function picoff(imja) {
    if (document.images) {
       document[imja].src = eval(imja + "off.src");
}
}

