
var loaded = false;

if (document.images) {
    img1off = new Image();img1off.src = "images/home/home1.gif";
    img2off = new Image();img2off.src = "images/home/batar1.gif";
	img3off = new Image();img3off.src = "images/home/gulet1.gif";
	img4off = new Image();img4off.src = "images/home/kapp1.gif";
	img5off = new Image();img5off.src = "images/home/salu1.gif";
	img6off = new Image();img6off.src = "images/home/foret1.gif";
	img7off = new Image();img7off.src = "images/home/refer1.gif";
	img8off = new Image();img8off.src = "images/home/kontakta1.gif";
	img9off = new Image();img9off.src = "images/home/nyttig1.gif";
}


function imageLoad() {
    if (document.images) {
    img1on = new Image();img1on.src = "images/home/home2.gif";
    img2on = new Image();img2on.src = "images/home/batar2.gif";
	img3on = new Image();img3on.src = "images/home/gulet2.gif";
	img4on = new Image();img4on.src = "images/home/kapp2.gif";
	img5on = new Image();img5on.src = "images/home/salu2.gif";
	img6on = new Image();img6on.src = "images/home/foret2.gif";
	img7on = new Image();img7on.src = "images/home/refer2.gif";
	img8on = new Image();img8on.src = "images/home/kontakta2.gif";
	img9on = new Image();img9on.src = "images/home/nyttig2.gif";
    return (loaded = true);
    }
}

function rollOut(imgName) {
    if (document.images) {
        document[imgName].src = eval(imgName+"off.src");
    }
}

function rollIn(imgName) {
    if (document.images && (loaded == true)) {
        document[imgName].src = eval(imgName+"on.src");
    }
}

