/// Magic Image Rotation								///
///	v 1.0.1												///
/// Copyright 2007, Loyce Bradley Petrey				///
///	All Rights Reserved.								///
/// http://www.EchoChrist.com/MagicImage				///
/// webmaster@EchoChrist.com							///


var ImageLoad = 
[
 //  ['URL to linked page', 'URL to image', 'Caption under picture'] //
['http://www.pantiesparadise.de/feuchte-moese82-m-877.html', 'http://www.pantiesparadise.de/images/imagecache/image84775.jpg', 'feuchte möse 82'],
['http://www.pantiesparadise.de/lady-dark-m-655.html', 'http://www.pantiesparadise.de/images/imagecache/image46973.jpg', 'Lady Dark'],		
['http://www.pantiesparadise.de/sexydevil666-m-1047.html', 'http://www.pantiesparadise.de/images/imagecache/image49467.jpg', 'Sexydevil666'],						
['http://www.pantiesparadise.de/slipgina-m-918.html', 'http://www.pantiesparadise.de/images/imagecache/image45838.jpg', 'SlipGina'],		
['http://www.pantiesparadise.de/nylonpussie-m-400.html', 'http://www.pantiesparadise.de/images/imagecache/image43814.jpg', 'nylonpussie'],		
['http://www.pantiesparadise.de/lucinda-m-1296.html', 'http://www.pantiesparadise.de/images/imagecache/image88588.jpg', 'Lucinda'],		
['http://www.pantiesparadise.de/annette-m-922.html', 'http://www.pantiesparadise.de/images/imagecache/image46764.jpg', 'Annette'],		
['http://www.pantiesparadise.de/sarah-m-687.html', 'http://www.pantiesparadise.de/images/imagecache/image36995.jpg', 'Sarah'],		
['http://www.pantiesparadise.de/wunschfee-m-559.html', 'http://www.pantiesparadise.de/images/imagecache/image45788.jpg', 'Wunschfee'],		
['http://www.pantiesparadise.de/venus666-m-528.html', 'http://www.pantiesparadise.de/images/imagecache/image32106.jpg', 'venus.666'],		
['http://www.pantiesparadise.de/viktoria76-m-761.html', 'http://www.pantiesparadise.de/images/imagecache/image35158.jpg', 'Viktoria76'],		
['http://www.pantiesparadise.de/feuchtes-schulmaedchen-m-718.html', 'http://www.pantiesparadise.de/images/imagecache/image34165.jpg', 'feuchtes Schulmädchen'],		
['http://www.pantiesparadise.de/jezzy1989-m-1002.html', 'http://www.pantiesparadise.de/images/imagecache/image47542.jpg', 'jezzy1989'],		
['http://www.pantiesparadise.de/inkpussydeluxe-m-1149.html', 'http://www.pantiesparadise.de/images/imagecache/image64909.jpg', 'InkPussyDeluxe'],		
['http://www.pantiesparadise.de/lolita23-m-920.html', 'http://www.pantiesparadise.de/images/imagecache/image42318.jpg', 'Lolita23'],		
['http://www.pantiesparadise.de/honeybb-m-1175.html', 'http://www.pantiesparadise.de/images/imagecache/image63841.jpg', 'Honey BB'],		
['http://www.pantiesparadise.de/cordelia-m-355.html', 'http://www.pantiesparadise.de/images/imagecache/image14949.jpg', 'Cordelia'],		
['hhttp://www.pantiesparadise.de/mia-m-516.htmll', 'http://www.pantiesparadise.de/images/imagecache/image87041.jpg', 'Mia'],		
['http://www.pantiesparadise.de/geile-studentin-m-382.html', 'http://www.pantiesparadise.de/images/imagecache/image37754.jpg', 'geile Studentin'],		
['http://www.pantiesparadise.de/nylonluder-m-863.html', 'http://www.pantiesparadise.de/images/imagecache/image54803.jpg', 'Nylonluder'],		
['http://www.pantiesparadise.de/geiles-dirndl-m-1014.html', 'http://www.pantiesparadise.de/images/imagecache/image71696.jpg', 'geiles Miststueck 69'],		
['http://www.pantiesparadise.de/schneckchen-m-941.html', 'http://www.pantiesparadise.de/images/imagecache/image43638.jpg', 'Schneckchen']
//  The LAST image declaration does NOT have a comma after it //
];
var ImageCount		= 22;			//  *****  Change this to the total number of images loaded above  ***** 		//	
var ImageDelay		= 5200;			//  *****  Set this to the delay interval desired.  5000 = 5 seconds.			// 
var LinkTarget		= "_self"		//  *****  Defines where you want linked page to open. _self, _blank, _top, etc	//
var ImageIndex		= Math.floor(Math.random()*ImageCount);			//  DO NOT ALTER	//
var FirstLoad 		= 0;			//  DO NOT ALTER	//
var QuickStartID 	= 0;  			//  DO NOT ALTER	//
var htmlString 		= ""			//  DO NOT ALTER 	//

//  This function rotates the banner  //
function ImageChange()

{		

htmlString = '<center>';
htmlString = htmlString + '<font face = "Verdana" size="1"><a target="';
htmlString = htmlString + LinkTarget;
htmlString = htmlString + '" href="';
htmlString = htmlString + ImageLoad[ImageIndex][0];
htmlString = htmlString + '">';
htmlString = htmlString + ImageLoad[ImageIndex][2];		//  Font and Font Size for caption may be changed here	//
htmlString = htmlString +'<br><img border="0" src="';				//  Image border size may be changed here				//	
htmlString = htmlString + ImageLoad[ImageIndex][1];
htmlString = htmlString + '"></a>';
htmlString = htmlString + '</font>';
htmlString = htmlString + '</center>';		

$('MagicImage2').innerHTML = htmlString; 				

if(ImageIndex == ImageCount - 1)		//  This statement increments image displayed and resets if displaying last image  //
{										
ImageIndex= 0;																				
}																								
else																							
{																								
ImageIndex++;																					
}																										

if(FirstLoad == 0)						//  Determins if this is the first time function has run.   // 
{
SlowFinish();
}

}
//  End Funtion  //

//  This function ensures first banner is displayted without a delay  //
function  QuickStart()
{
QuickStartID=setInterval("ImageChange()", 1000);
}
//  End Funtion  //																		

//  This function sets display rate to user defined speed  //
function SlowFinish()
{
clearInterval(QuickStartID);
FirstLoad = 1;
setInterval("ImageChange()", ImageDelay);	 
}
//  End Funtion  //

//QuickStart();