ralf: grafik soll hinter textticker gelegt werden, ohne ihn zu verdecken

Beitrag lesen

ich möchte eine grafik hinter einen textticker legen, ohne das dieser verdeckt wird. bei den pulldown menüs klappt es auch. was mache ich falsch?

Quelltext:

<html>
<head>
<title>hseite1</title>
<style type="text/css">
<!--
h1 { font-size:12pt; font-weight:100; color:#DF7000; background-color:#FFF3CC; font-family:Arial,Times New Roman;}
h2 { font-size:8pt; font-weight:100; color:#DF7000; background-color:#FFF3CC; font-family:Arial,Times New Roman; margin-left:0cm;}
//-->
</style>
<script>
<!-- START HIDE
var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl = new textlist
(
"Was ist neu auf Ralf‚s toller Homepage?",
"Ihr könnt mir  (oder anderen)   kostenlos eine SMS senden!",
"Einfach oben links anklicken ;  der Rest wird erklärt !",
"Die Urlaubsfotos sind da !"
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
document.tickform.tickfield.value=tl[x].substring(0,pos)+"_";
if(pos++==l) { pos=0; setTimeout("textticker()",2000); x++;
if(x==max) x=0; l=tl[x].length; } else
setTimeout("textticker()",50);
}
// STOP HIDE -->
</script>
</head>
<body text="#000000" bgcolor="#FFF3CC"  link="#007F00" alink="#FF7F00" vlink="#007F00" onload="textticker()">
<div align="center">
  <table cellpadding=5>
     <colgroup>
        <col width=50%>
        <col width=50%>
     </colgroup>
    <tr  valign=middle>
      <td>
<img src="ralf.jpg" alt="Bild von mir" border="1">
      </td>
      <td>
<form name="tickform">
<input type="text" name="tickfield" size="50">
</form><br><br>
<h1> Sie sind der
<img src="http://counter.freeware.de/user/RalfHinrichs" border="0"> Besucher.<a href="http://www.freeware.de/indexc.html"><h2>(gez. v. Freeware)</a>
      </td>
    </tr>
  </table>
</div>
</body>
</html>

ralf!