<html>
<head>
<style type="text/css" media="screen">
<!--
#wechsel
{
filter: blendTrans(duration=3);
cursor: pointer;
}
//-->
</style>
<script language="JavaScript" type="text/javascript">
<!--
var img_num = 0;
var browser = navigator.userAgent;
var imgBild = new Array();
var imgLink = new Array();
imgBild[0] = 'http://javarea.de/forum/images/icon/icon9.gif';
imgLink[0] = 'http://www.pkoch.de';
imgBild[1] = 'http://javarea.de/forum/images/icon/icon5.gif';
imgLink[1] = 'http://www.pkoch.de';
imgBild[2] = 'http://javarea.de/forum/images/icon/icon6.gif';
imgLink[2] = 'http://www.pkoch.de';
imgBild[3] = 'http://javarea.de/forum/images/icon/icon7.gif';
imgLink[3] = 'http://www.pkoch.de';
function banner()
{
if (++img_num > (imgBild.length - 1))
img_num = 0;
with (document)
{
if (browser.search(/MSIE/) != -1)
getElementById('wechsel').filters.blendTrans.apply();
getElementById('wechsel').src = imgBild[img_num];
if (browser.search(/MSIE/) != -1)
getElementById('wechsel').filters.blendTrans.play();
}
setTimeout('banner();', 5000);
}
function slidelink()
{
self.location.href = imgLink[img_num];
}
//-->
</script>
</head>
<body onload="setTimeout('banner();', 5000);">
<img id="wechsel" src="http://javarea.de/forum/images/icon/icon9.gif" border="0" alt="" onclick="slidelink();" />
</body>
</html> |