Davisa: Dynamische grafische Buttons <- schon wieder Probleme!

Beitrag lesen

Re!

Ich habe schon wieder ein Problem *heul*.
Ich habe meine Homepage sehr schön eingebaut und es gab nie Probleme damit. Natürlich es war harte Arbeit für mich, aber trotzdem es macht mir Spass :). Dann nach dem Publizieren geht schon wieder die Probleme los. Schau mal meine Homepage www.dama-vince-sam.de/hello.html an. Die Buttons sind echt krass. Wenn ich auf die braune Buttons klicken will, erscheint plötzlich komische Symbole (weiss nicht, wie man das nennt). Irgendwas stimmt nicht. Habt ihr Ahnung, wo es einen Fehler liegt?

Meine Code:

<script type="text/javascript">
<!--
if (document.images)
{
Normal1= new Image();
Normal1.src = "Button/aboutmebraun.gif";
Highlight1 = new Image();
Highlight1.src = "Button/aboutmegelb.gif";

Normal2 = new Image();
Normal2.src = "Button/myphotoalbumbraun.gif";
Highlight2 = new Image();
Highlight2.src = "button/myphotoalbumgelb.gif";

Normal3= new Image();
Normal3.src = "Button/mypicturesbraun.gif";
Highlight3 = new Image();
Highlight3.src = "Button/mypicturesgelb.gif";

Normal4 = new Image();
Normal4.src = "Button/contactbraun.gif"
Highlight4 = new Image();
Highlight4.src = "Button/contactgelb.gif";
}
function Bildwechsel (Bildnr, Bildobject)
{
window.document.images[Bildnr].src = Bildobject.src;
}
function preload() {
for(var img, i = 0; i < arguments.lenght; i++) {
img = new Image;
img.src = arg[i];
}
}
//-->
</script>
<a href="meinlebenslauf.html"><img
style="position: absolute; top: 110px; left: 13px;"
src="aboutmebraun.gif" onmouseover="this.src='Button/aboutmegelb.gif'"
onmouseout="this.src='Button/aboutmebraun.gif'" alt=""></a> <a
href="myphotoalbum.html"><img
alt="" onmouseout="this.src='Button/myphotoalbumbraun.gif'"
onmouseover="this.src='Button/myphotoalbumgelb.gif'"
src="myphotoalbumbraun.gif"
style="position: absolute; top: 189px; left: 13px;"></a> <a
href="mypictures.html"><img
style="position: absolute; top: 271px; left: 13px;"
src="mypicturesbraun.gif"
onmouseover="this.src='Button/mypicturesgelb.gif'"
onmouseout="this.src='Button/mypicturesbraun.gif'" alt=""></a> <a
href="kontakt.html"><img
style="position: absolute; top: 350px; left: 13px;"
src="contactbraun.gif" onmouseover="this.src='Button/contactgelb.gif'"
onmouseout="this.src='Button/contactbraun.gif'" alt=""></a>

Traurige Gruss

Davisa