var ImageLoad2 = [ ['http://www.pantiesparadise.de/Alexis-m-2573.html', 'http://www.pantiesparadise.de/images/imagecache/image270025.jpg', 'Alexis']
, ['http://www.pantiesparadise.de/Russische_Saftpflaume-m-4126.html', 'http://www.pantiesparadise.de/images/imagecache/image273844.jpg', 'Russische Saftpflaume']
, ['http://www.pantiesparadise.de/Destina-m-3657.html', 'http://www.pantiesparadise.de/images/imagecache/image225611.jpg', 'Destina']
, ['http://www.pantiesparadise.de/Marylin-m-4494.html', 'http://www.pantiesparadise.de/images/imagecache/image274596.jpg', 'Marylin']
, ['http://www.pantiesparadise.de/fancy_girl-m-1494.html', 'http://www.pantiesparadise.de/images/imagecache/image202325.jpg', 'fancy girl']
, ['http://www.pantiesparadise.de/Ebony_Sin-m-3304.html', 'http://www.pantiesparadise.de/images/imagecache/image263226.jpg', 'Ebony Sin']
, ['http://www.pantiesparadise.de/HeisseLena-m-1970.html', 'http://www.pantiesparadise.de/images/imagecache/image269488.jpg', 'HeisseLena']
, ['http://www.pantiesparadise.de/HoTsExYpUsSy-m-3210.html', 'http://www.pantiesparadise.de/images/imagecache/image213528.jpg', 'HoTsExYpUsSy']
, ['http://www.pantiesparadise.de/Koenigin_der_Lust-m-4552.html', 'http://www.pantiesparadise.de/images/imagecache/image271504.jpg', 'Koenigin der Lust']
, ['http://www.pantiesparadise.de/Luna_Lixx-m-1848.html', 'http://www.pantiesparadise.de/images/imagecache/image270594.jpg', 'Luna Lixx']
 ];var ImageCount2 = 10;
// var ImageCount2		= 22;			//  *****  Change this to the total number of images loaded above  ***** 		//	
var ImageDelay2		= 5200;			//  *****  Set this to the delay interval desired.  5000 = 5 seconds.			// 
var LinkTarget2		= "_self"		//  *****  Defines where you want linked page to open. _self, _blank, _top, etc	//
var ImageIndex2		= Math.floor(Math.random()*ImageCount2);			//  DO NOT ALTER	//
var FirstLoad2 		= 0;			//  DO NOT ALTER	//
var QuickStartID2 	= 0;  			//  DO NOT ALTER	//
var htmlString2 		= ""			//  DO NOT ALTER 	//

//  This function rotates the banner  //
function ImageChange2()

{		

htmlString2 = '<center>';
htmlString2 = htmlString2 + '<font face = "Verdana" size="1"><a target="';
htmlString2 = htmlString2 + LinkTarget2;
htmlString2 = htmlString2 + '" href="';
htmlString2 = htmlString2 + ImageLoad2[ImageIndex2][0];
htmlString2 = htmlString2 + '">';
htmlString2 = htmlString2 + ImageLoad2[ImageIndex2][2];		//  Font and Font Size for caption may be changed here	//
htmlString2 = htmlString2 +'<br><img border="0" src="';				//  Image border size may be changed here				//	
htmlString2 = htmlString2 + ImageLoad2[ImageIndex2][1];
htmlString2 = htmlString2 + '"></a>';
htmlString2 = htmlString2 + '</font>';
htmlString2 = htmlString2 + '</center>';		

$('MagicImage').innerHTML = htmlString2; 				

if(ImageIndex2 == ImageCount2 - 1)		//  This statement increments image displayed and resets if displaying last image  //
{										
ImageIndex2= 0;																				
}																								
else																							
{																								
ImageIndex2++;																					
}																										

if(FirstLoad2 == 0)						//  Determins if this is the first time function has run.   // 
{
SlowFinish2();
}

}
//  End Funtion  //

//  This function ensures first banner is displayted without a delay  //
function  QuickStart2()
{
QuickStartID2=setInterval("ImageChange2()", 1000);
}
//  End Funtion  //																		

//  This function sets display rate to user defined speed  //
function SlowFinish2()
{
clearInterval(QuickStartID2);
FirstLoad2 = 1;
setInterval("ImageChange2()", ImageDelay2);	 
}
