loaded = 0;
function loadimages()
    {
    if (document.images)
        {
        imag = new Array()
        imag[0] = "gfx/menu/heimseite_ov.jpg"
        imag[1] = "gfx/menu/heimseite.jpg"
        imag[2] = "gfx/menu/label_ov.jpg"
        imag[3] = "gfx/menu/label.jpg"
        imag[4] = "gfx/menu/studio_ov.jpg"
        imag[5] = "gfx/menu/studio.jpg"
        imag[6] = "gfx/menu/service_ov.jpg"
        imag[7] = "gfx/menu/service.jpg"
        imag[8] = "gfx/menu/bands_ov.jpg"
        imag[9] = "gfx/menu/bands.jpg"
        imag[10] = "gfx/menu/shop_ov.jpg"
        imag[11] = "gfx/menu/shop.jpg"
        imag[12] = "gfx/menu/kontakt_ov.jpg"
        imag[13] = "gfx/menu/kontakt.jpg"

        im = new Array()
        for (var i = 0; i < imag.length; i++)
            {
            if (document.images)
            im[i] = new Image();
            if (document.images)
            im[i].src = imag[i];
            }
        loaded = 1
        }
    }

function swtch(num,imgname)
    {
    if (document.images && loaded == 1)
    imgname.src = im[num].src
    }