			var i = 1;
			var bannercount = 2;
			var bannertime = 7;
			banner = new Array;
			//banner[1] = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='773' height='132'><param name='movie' value='../specials/desmo2004/desmoherschlag.swf'><param name='quality' value='high'><embed src='../specials/desmo2004/desmoherschlag.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='773' height='132'></embed></object>";
			//banner[2] = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='773' height='132'><param name='movie' value='../flash/banner_Filiali.swf'><param name='quality' value='high'><embed src='../flash/banner_Filiali.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='773' height='132'></embed></object>";
			
		    banner[1] = '<img src="../images/banner/weihnacht2005.jpg" alt="Ein Frohes Weihnachtsfest wünscht Ihnen\n DUCATI Motor Deutschland" width="773" height="186" border="0">';
			banner[2] = '<img src="../images/banner/modelle2006.jpg" alt="Modelle 2006" width="773" height="186" border="0">';
		   

			links = new Array
			links[1] = "http://www.ducati.de/global/home.php";
			links[2] = "http://www.ducati.de/modelle06/overview.php";
			
			onAction = new Array
			//onAction[1] = "window.open('http://www.ducati.com/docs_eng/model05/sportclassic/flash/intro.html','Popup_flash','toolbar=no,top=0,status=no,menubar=no,scrollbars=no,resizable=no,width=700,height=450');"
			onAction[1] = "window.location.href='http://www.ducati.de/global/home.php';"
			onAction[2] = "window.location.href='http://www.ducati.de/modelle06/overview.php';"
			

			description = new Array
			description[1] = "Weihnachten 2005"
			description[2] = "Modelle 2006"
			

			function randomStart()
			{
				var randomnumber = Math.random() ;
				var rand1 = Math.round( (bannercount-1) * randomnumber) + 1 ;
				if(document.layers) { // Netscape 4.x
				  document.layers["bannerContainer"].document.open();
				  document.layers["bannerContainer"].document.write(banner[rand1]);
					document.layers["bannerContainer"].document.close();
				}
			 	else if(document.all) { // Internet Explorer 4+
					document.all["bannerContainer"].innerHTML=banner[rand1];
				}
				else if(document.getElementById) { // W3C konform zB. Opera, Mozilla, Netscape 6+ 
				  document.getElementById("bannerContainer").innerHTML=banner[rand1];
				}
				i = rand1;
				startTimer();
			}
			
			function startTimer()
			{
				var time= new Date();
        		hours= time.getHours();
		        mins= time.getMinutes();
		        secs= time.getSeconds();
		        closeTime=hours*3600+mins*60+secs;
		        closeTime+=bannertime;
		        Timer();
			}
			
			function Timer()
			{
	        	var time= new Date();
		        hours= time.getHours();
		        mins= time.getMinutes();
		        secs= time.getSeconds();
		        curTime=hours*3600+mins*60+secs
		        if (curTime>=closeTime)
				{
					if (i < bannercount)
					{	
						i++;
						if(document.layers) { // Netscape 4.x
						  document.layers["bannerContainer"].document.open();
						  document.layers["bannerContainer"].document.write(banner[i]);
  						document.layers["bannerContainer"].document.close();
  					}
					 	else if(document.all) { // Internet Explorer 4+
  						document.all["bannerContainer"].innerHTML=banner[i];
 						}
						else if(document.getElementById) { // W3C konform zB. Opera, Mozilla, Netscape 6+ 
						  document.getElementById("bannerContainer").innerHTML=banner[i];
						}
					}
					else
					{
						i = 1;
						if(document.layers) { // Netscape 4.x
						  document.layers["bannerContainer"].document.open();
						  document.layers["bannerContainer"].document.write(banner[i]);
  						document.layers["bannerContainer"].document.close();
  					}
					 	else if(document.all) { // Internet Explorer 4+
  						document.all["bannerContainer"].innerHTML=banner[i];
 						}
						else if(document.getElementById) { // W3C konform zB. Opera, Mozilla, Netscape 6+ 
						  document.getElementById("bannerContainer").innerHTML=banner[i];
						}
					}
					startTimer();
				}
		        else
				{
	          window.setTimeout("Timer()",1000)
				}
			}

			function clickLink()
			{
				if (onAction[i] != "")
				{
					eval(onAction[i]);
				} else
				{
					self.location.href = links[i];
				}
			}
			function descript()
			{
				window.status = description[i]
			}