<!-- Browser Check -->
iens6=document.all||document.getElementById
ns4=document.layers

function surfto(target)
 {
navigating = 1
 window.location.href = target;
 }
var linkArray = new Array

<!--Platzhalter für SubMenus-->
linkArray[0]="<tr><td><a class=\"menu\" href='shop_show.php?show=anzuege-reda' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=anzuege-reda\")'><nobr>&nbsp;&nbsp;Reda&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[0]+="<tr><td><a class=\"menu\" href='shop_show.php?show=anzuege-cerruti' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=anzuege-cerruti\")'><nobr>&nbsp;&nbsp;Cerruti&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[0]+="<tr><td><a class=\"menu\" href='shop_show.php?show=anzuege-marzotto' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=anzuege-marzotto\")'><nobr>&nbsp;&nbsp;Marzotto&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[1]="<tr><td><a class=\"menu\" href='shop_show.php?show=hosen-reda' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=hosen-reda\")'><nobr>&nbsp;&nbsp;Reda&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[1]+="<tr><td><a class=\"menu\" href='shop_show.php?show=hosen-cerruti' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=hosen-cerruti\")'><nobr>&nbsp;&nbsp;Cerruti&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[1]+="<tr><td><a class=\"menu\" href='shop_show.php?show=hosen-marzotto' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=hosen-marzotto\")'><nobr>&nbsp;&nbsp;Marzotto&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[2]="<tr><td><a class=\"menu\" href='shop_show.php?show=sakkos-reda' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=sakkos-reda\")'><nobr>&nbsp;&nbsp;Reda&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[2]+="<tr><td><a class=\"menu\" href='shop_show.php?show=sakkos-cerruti' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=sakkos-cerruti\")'><nobr>&nbsp;&nbsp;Cerruti&nbsp;&nbsp;</nobr></a></td></tr>"
linkArray[2]+="<tr><td><a class=\"menu\" href='shop_show.php?show=sakkos-marzotto' onMouseOver='clearTimeout(timerID)' onMouseOut='viewIt()' onMouseDown='surfto(\"shop_show.php?show=sakkos-marzotto\")'><nobr>&nbsp;&nbsp;Marzotto&nbsp;&nbsp;</nobr></a></td></tr>"


<!--GLOBAL VARIABLES-->
var navigating = 0
var thename
var theobj
var thetext
var winWidth
var boxPosition
var timerID
var seconds=3
var x=0
var y=0
<!--END GLOBAL VARIABLES-->

<!--GLOBAL FUNCTIONS-->
function buildText(value) {
text = "<table class='submenu' width='100%' border='0' cellspacing='2' cellpadding='2'>"
text += linkArray[value]+"</table>"
return text
}

function setObj(textelement,inwidth,x,y,theObject) {
	clearTimeout(timerID)
	winWidth=inwidth
	thetext=buildText(textelement)

	if(iens6){
		thename = "viewer"
		theobj=document.getElementById? document.getElementById(thename):document.all.thename
		theobj.style.width=winWidth
		theobj.style.left=x+'px';
			if(iens6&&document.all) {
                        theobj.style.top=document.body.scrollTop+y+'px';
				theobj.innerHTML = "";
				theobj.insertAdjacentHTML("BeforeEnd",thetext);
			}
			if(iens6&&!document.all) {
			theobj.style.top=window.pageYOffset+y+'px';
				theobj.innerHTML = ""
				theobj.innerHTML=thetext
			}
	}
	if(ns4){
		thename = "nsviewer"
		theobj = eval("document."+thename)
		theobj.left=x
		theobj.top=y
		theobj.width=winWidth
		theobj.clip.width=winWidth
		theobj.document.write("thetext")
		theobj.document.close()
	}
	if (navigating == 0) viewIt()
}
function viewIt() {
		if(iens6) {
			theobj.style.visibility="visible"
		}
		if(ns4) {
 			theobj.visibility = "visible"
		}
	clearTimeout(timerID);
	timer(3);
}

function stopIt() {
	if(theobj) {
		if(iens6) {
		theobj.innerHTML = ""
		theobj.style.visibility="hidden"
		}
		if(ns4) {
		theobj.document.write("")
		theobj.document.close()
		theobj.visibility="hidden"
		}
	}
}

function timer(sec) {
	seconds=parseInt(sec)
	if(seconds>0) {
		seconds--
		timerID=setTimeout("timer(seconds)",1000)
	}else{
		stopIt()
	}
}
<!--END GLOBAL FUNCTIONS-->