home1=new Image();
home1.src="bilder/navigation/home.jpg";
home2=new Image();
home2.src="bilder/navigation/home_over.jpg";
function wechsel1() {document.home.src = home2.src};
function wechsel2() {document.home.src = home1.src};

illustration1=new Image();
illustration1.src="bilder/navigation/illustration.jpg";
illustration2=new Image();
illustration2.src="bilder/navigation/illustration_over.jpg";
function wechsel3() {document.illustration.src = illustration2.src};
function wechsel4() {document.illustration.src = illustration1.src};

characters1=new Image();
characters1.src="bilder/navigation/characters.jpg";
characters2=new Image();
characters2.src="bilder/navigation/characters_over.jpg";
function wechsel5() {document.characters.src = characters2.src};
function wechsel6() {document.characters.src = characters1.src};

news1=new Image();
news1.src="bilder/navigation/news.jpg";
news2=new Image();
news2.src="bilder/navigation/news_over.jpg";
function wechsel7() {document.news.src = news2.src};
function wechsel8() {document.news.src = news1.src};

about1=new Image();
about1.src="bilder/navigation/about.jpg";
about2=new Image();
about2.src="bilder/navigation/about_over.jpg";
function wechsel9() {document.about.src = about2.src};
function wechsel10() {document.about.src = about1.src};

contact1=new Image();
contact1.src="bilder/navigation/contact.jpg";
contact2=new Image();
contact2.src="bilder/navigation/contact_over.jpg";
function wechsel11() {document.contact.src = contact2.src};
function wechsel12() {document.contact.src = contact1.src};

imprint1=new Image();
imprint1.src="bilder/navigation/imprint.jpg";
imprint2=new Image();
imprint2.src="bilder/navigation/imprint_over.jpg";
function wechsel13() {document.imprint.src = imprint2.src};
function wechsel14() {document.imprint.src = imprint1.src};

/*
-----------------------------------------------------------------------
Popup Fenster - Funktion
-----------------------------------------------------------------------
*/
function GrafikAnzeigen(GrafikURL, Breite, Hoehe)
{
    Fensteroptionen = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
    Grafikfenster = window.open("", "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
    Grafikfenster.focus();
    Grafikfenster.document.open();
   
with(Grafikfenster)
    {
        document.write("<html><head>");
        document.write("<title>Grafikanzeige</title>");
        document.write("</head>");
        document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
        document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ GrafikURL +"\" title=\"Zum Schließen auf das Foto klicken\">");
        document.write("</body></html>");
    }
    return;
}