I don't know what I am doing wrong with this
Someone pls help me
this is the code
<script type="text/javascript">
function mouseOver(element, img)
{
img=\''.'http://',$_SERVER['HTTP_HOST'],'/files/image/\'+"img";
element.src = img;
setTimeout("mouseOver1",2000);
}
function mouseOver1(element, img1)
{
imName = img.split(".")
var imageName = imName[0]+"1."+imName[1];
img1=\''.'http://',$_SERVER['HTTP_HOST'],'/files/image/\'+"lucky_ranch_dressup1.gif";
element.src = img1;
setTimeout("mouseOver",2000);
}
function mouseOut(element, img3)
{
img3=\''.'http://',$_SERVER['HTTP_HOST'],'/files/image/\'+"lucky_ranch_dressup1.gif";
element.src =img3;
}
</script>