// JavaScript Document

function ImgPreload() {
    var d = document;
    if(d.images) {
        if(!d.preload)
            d.preload = new Array();
        var i, j = d.preload.length, args = ImgPreload.arguments;
        for(i = 0; i < args.length; i++)
            if (args[i].indexOf("#") != 0) {
                d.preload[j] = new Image;
                d.preload[j++].src = args[i];
            }
    }
}
function ImgOver(id) {
    //alert(name);
    //if ("menu_"+document.Page!=name)
        document.getElementById(id).src="images/"+id+"Over.jpg";
}

function ImgOut(id) {
    //if ("menu_"+document.Page!=name)
        document.getElementById(id).src="images/"+id+".jpg";
}

function SetMenu(page) {
    document.getElementById("menu_"+page).src="images/"+"menu_"+page+"_f2.png";
}

// End