var anzahl = 6;
product_id = new Array("274377","494890","217350","891212","419887","882868","570620");
deeplink = new Array("&et_sub=zan_top_274377&ArticleNo=274377","&et_sub=zan_top_494890&ArticleNo=494890","&et_sub=zan_top_217350&ArticleNo=217350","&et_sub=zan_top_891212&ArticleNo=891212","&et_sub=zan_top_419887&ArticleNo=419887","&et_sub=zan_top_882868&ArticleNo=882868","&et_sub=zan_top_570620&ArticleNo=570620");
txt_product = new Array("Gartenmöbel-Set »Bern« (5-tlg.)","Universal-Werkzeugkoffer (156-tlg.)","Wäschespinne »Linomatic V400«","Alu-Trekking-Fahrrad, für Damen,26 Zoll","Hochdruckreiniger »4.80 MD«","Bodenstaubsauger »VC 4870 E«","Dunstabzugshaube, 620 m³/h,60 cm breit");
txt_price = new Array("249,99 EUR","54,99 EUR","99,99 EUR","299,99 EUR","199,99 EUR","59,99 EUR","89,99 EUR");
txt_price_old = new Array("","","","","","","");
img_source = new Array("http://image01.otto.de:80/pool/bd_format_dv/2963082.jpg","http://image01.otto.de:80/pool/bd_format_dv/1971061.jpg","http://image01.otto.de:80/pool/bd_format_dv/2950833.jpg","http://image01.otto.de:80/pool/bd_format_dv/2951322.jpg","http://image01.otto.de:80/pool/bd_format_dv/2447460.jpg","http://image01.otto.de:80/pool/bd_format_dv/3507561.jpg","http://image01.otto.de:80/pool/bd_format_dv/3711899.jpg");

img_path = "";
txt_company = "Hagebau.de";
img_alt = "Hagebau.de - Größter Online Baumarkt!";


var zufallszahl, aktuelle_zufallszahl, multiplikator, url_product;

// *******************************************************************************
// *** Produkt festlegen (zyklisch wechselnd)                                  ***
// *******************************************************************************

function ermittle_zufallszahl()
{	
	multiplikator = anzahl - 1;
	zufallszahl=Math.round((Math.random()*multiplikator));
	if ( (zufallszahl>0) && (zufallszahl==aktuelle_zufallszahl) )
	{
		ermittle_zufallszahl();
	}
	aktuelle_zufallszahl = zufallszahl;
}

// *******************************************************************************
// *** Aufrufteil:                                                             ***
// *** Hinweis: Ändern Sie den Namen der Funktion (auch im HTML-Code) !!!      ***
// *******************************************************************************

function Hagebau_RotationProducts(link)
{
	ermittle_zufallszahl();
	link = unescape(link);
	url_product = link + deeplink[zufallszahl];
	document.writeln('<TABLE CELLSPACING=0 BORDER=0 WIDTH="120"><TR><TD WIDTH="120" VALIGN="TOP">');
	document.writeln('<FONT SIZE="2" FACE="Arial,Helvetica,sans-serif"><CENTER>');
	document.writeln('<A HREF="' + url_product + '" TARGET="_blank"><IMG SRC="' + img_path + img_source[zufallszahl] + '" ALT="' + img_alt + '" BORDER="0" height="80"></A>');
	document.writeln('<BR><B>' + txt_product[zufallszahl] + '</B><BR>&nbsp;<BR><FONT COLOR="red"><B>' + txt_price[zufallszahl] + '</B></FONT><BR><FONT style="text-decoration:line-through;">' + txt_price_old[zufallszahl] + '</FONT><BR><b><A HREF="' + url_product + '" TARGET="_blank"><img src="http://www.onmacon.de/kunden/hagebau/banner/logos/80x24_logo.gif" border="0" width="80" height="24"</a></b></CENTER></FONT>');
	document.writeln('</TD></TR></TABLE>');
}
