var anzahl = -1;
product_id = new Array();
deeplink = new Array();
txt_product = new Array();
txt_price = new Array();
txt_price_old = new Array();
img_source = new Array();

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>');
}

