// Created by Doug Popeney (dpopeney@polymail.calpoly.edu)
// JavaScripte von http://internet-partner.de

if (navigator.appVersion.indexOf("2.") != -1){
        check = true;
        }

else {
        check = true;
        }
if (check == true){
        b_character = new Image();
        b_character.src = "img/xxbn_character.gif";
        b_characteron = new Image();
        b_characteron.src = "img/xxbr_character.gif";
        b_characterstay = new Image();
        b_characterstay.src = "img/xxbr_character.gif";

        b_conceptart = new Image();
        b_conceptart.src = "img/xxbn_conceptart.gif";
        b_conceptarton = new Image();
        b_conceptarton.src = "img/xxbr_conceptart.gif";
        b_conceptartstay = new Image();
        b_conceptartstay.src = "img/xxbr_conceptart.gif";

        b_body = new Image();
        b_body.src = "img/xxbn_body.gif";
        b_bodyon = new Image();
        b_bodyon.src = "img/xxbr_body.gif";
        b_bodystay = new Image();
        b_bodystay.src = "img/xxbr_body.gif";

        b_head = new Image();
        b_head.src = "img/xxbn_head.gif";
        b_headon = new Image();
        b_headon.src = "img/xxbr_head.gif";
        b_headstay = new Image();
        b_headstay.src = "img/xxbr_head.gif";

        b_details = new Image();
        b_details.src = "img/xxbn_details.gif";
        b_detailson = new Image();
        b_detailson.src = "img/xxbr_details.gif";
        b_detailsstay = new Image();
        b_detailsstay.src = "img/xxbr_details.gif";

        b_buyinglist = new Image();
        b_buyinglist.src = "img/xxbn_buyinglist.gif";
        b_buyingliston = new Image();
        b_buyingliston.src = "img/xxbr_buyinglist.gif";
        b_buyingliststay = new Image();
        b_buyingliststay.src = "img/xxbr_buyinglist.gif";

        b_photos = new Image();
        b_photos.src = "img/xxbn_photos.gif";
        b_photoson = new Image();
        b_photoson.src = "img/xxbr_photos.gif";
        b_photosstay = new Image();
        b_photosstay.src = "img/xxbr_photos.gif";

        b_links = new Image();
        b_links.src = "img/xxbn_links.gif";
        b_linkson = new Image();
        b_linkson.src = "img/xxbr_links.gif";
        b_linksstay = new Image();
        b_linksstay.src = "img/xxbr_links.gif";

        b_faq = new Image();
        b_faq.src = "img/xxbn_faq.gif";
        b_faqon = new Image();
        b_faqon.src = "img/xxbr_faq.gif";
        b_faqstay = new Image();
        b_faqstay.src = "img/xxbr_faq.gif";

        b_home = new Image();
        b_home.src = "img/xxbn_home.gif";
        b_homeon = new Image();
        b_homeon.src = "img/xxbr_home.gif";
        b_homestay = new Image();
        b_homestay.src = "img/xxbr_home.gif";



}

imageStay = ""

function imageon(name){
        if (imageStay != name){
                document[name].src = eval(name + "on.src");
        }
}
function imageoff(name){
        if (imageStay != name){
                document[name].src = eval(name + ".src");
        }
}

function on(name){
        if (check == true){
        imageon(name);
        }
}
function off(name){
        if (check == true){
        imageoff(name);
        }
}

function stay(name){
        if (check == true){
        document[name].src = eval(name + "stay.src");
        if (imageStay != name){
                if (imageStay != ""){
                        document[imageStay].src = eval(imageStay + ".src");
                }
        }
        imageStay = name
        }
}