Conan: Bekomme Frame nicht in die Mitte

Beitrag lesen

Ich habe folgendes Problem:

Ich habe mir eine Art Linkleiste in HTML geschrieben, die als Navigation für meine Homepage dienen soll. Nun habe ich aber das Problem, dass das Ding einfach nicht in die Mitte will, ich hab schon alles versucht, z.b <center>, <valign="middle">, usw., aber das hat alles nichts gebracht!

Bis jetzt sieht das bei mir so aus:

Highlight3 = new Image();
Highlight3.src = "Lebenslauf(2).jpg";

Normal4 = new Image();
Normal4.src = "Hobbys.jpg";
Highlight4 = new Image();
Highlight4.src = "Hobbys(2).jpg";

Normal5 = new Image();
Normal5.src = "Kassel.jpg";
Highlight5 = new Image();
Highlight5.src = "Kassel(ohne Rest).jpg";

function Bildwechsel (Bildnr, Bildobjekt) {
  window.document.images[Bildnr].src = Bildobjekt.src;

}
</script>
<style type="text/css">
h1 { color:#6363A5; font-family:Arial,sans-serif; }
p  { color:#000000; font-family:Arial,sans-serif; }
</style>
</head>
<body bgcolor="#FFFFFF" background="bg_Whole.jpg" topmargin="110" leftmargin="*"  ;">

<table border="0" cellpadding="0" cellspacing="0"><tr>
<td valign="top">

<center><a href="home.html" target="home"
   onmouseover="Bildwechsel(0, Highlight1)"
   onmouseout="Bildwechsel(0, Normal1)"><img src="home(test).jpg"
   width="220" height="52" border="0" alt="Home" </a><a href="test.html" target="home"
   onmouseover="Bildwechsel(1, Highlight2)"
   onmouseout="Bildwechsel(1, Normal2)"><img src="stundenplan.jpg"
   width="150" height="52" border="0" alt="Stundenplan"</a><a href="Lebenslauf.html" target="home"
   onmouseover="Bildwechsel(2, Highlight3)"
   onmouseout="Bildwechsel(2, Normal3)"><img src="Lebenslauf.jpg"
   width="150" height="52" border="0" alt="Lebenslauf" </a><a href="Hobbys.html" target="home"
   onmouseover="Bildwechsel(3, Highlight4)"
   onmouseout="Bildwechsel(3, Normal4)"><img src="Hobbys.jpg"
   width="150" height="52" border="0" alt="Hobbys"</a><a href="Kassel.html" target="home"
   onmouseover="Bildwechsel(4, Highlight5)"
   onmouseout="Bildwechsel(4, Normal5)"><img src="Kassel.jpg"
   width="220" height="52" border="0" alt="Freizeit in Kassel"</a></center>

</td>
</tr>
</table>

</body>
</html>

Vielen Dank für eure Hilfe schon mal im voraus!