var ImageLoad = 
[
['http://www.zivinice.ba/preusmjeri.php?reklama=rurip&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/edobih_468.gif'],		
//['http://www.omega.ba', 	'http://www.zivinice.ba/gfx/reklama/omega_468.gif'],		
//['http://www.zivinice.ba/sponzori/osk.php', 	'http://www.zivinice.ba/gfx/reklama/osk468.gif'],		
//['http://www.zivinice.ba/sponzori/memi.php', 	'http://www.zivinice.ba/gfx/reklama/memi.gif'],		
//['http://www.zivinice.ba/sponzori/intersan.php', 	'http://www.zivinice.ba/gfx/reklama/intersan.gif'],
['http://www.zivinice.ba/preusmjeri.php?reklama=aden&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/aden_468.jpg'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=cuperak&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/cuperak_468.jpg'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=iverexkomerc&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/iverex_468.gif'],
['http://www.zivinice.ba/preusmjeri.php?reklama=vega-mix&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/vegamix_468.jpg'],
//['http://www.zivinice.ba/sponzori/ordinacija_sahinpasic.php', 	'http://www.zivinice.ba/gfx/reklama/oo_468.jpg'],
['http://www.zivinice.ba/preusmjeri.php?reklama=sanpro&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/sanpro_468.jpg'],
['http://www.zivinice.ba/preusmjeri.php?reklama=domaca-radinost&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/domaca_468.jpg'],
['http://www.zivinice.ba/preusmjeri.php?reklama=zh-zola&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/zh-zola_468.gif'],
//['http://www.zivinice.ba/reklama.php?id=dragon', 	'http://www.zivinice.ba/gfx/reklama/dragon_468.gif'],
//['http://www.zivinice.ba/sponzori/dina.php', 	'gfx/reklama/dina_468.jpg'],
//['http://www.zivinice.ba/reklama.php?id=zimmermann', 	'http://www.zivinice.ba/gfx/reklama/zimmermann_468.gif'],
//['http://www.zivinice.ba/reklama.php?id=elida', 	'http://www.zivinice.ba/gfx/reklama/elida_468.gif'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=nocko&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/nocko_468.jpg'],
['http://www.zivinice.ba/preusmjeri.php?reklama=aluplastik&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/ap_468.gif'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=dinokafa&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/dino_468.jpg'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=microproject&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/mp_468.gif'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=edina&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/edina_468.jpg'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=ebiznis&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/ebiznis_468.jpg'],
//['http://www.zivinice.ba/preusmjeri.php?reklama=limuzina&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/limuzina_468.jpg'],
['http://www.zivinice.ba/preusmjeri.php?reklama=olimpiksport&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/olimpiksport_468.jpg'],
['http://www.zivinice.ba/preusmjeri.php?reklama=trend&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/trend_468.jpg'],
['http://www.zivinice.ba/preusmjeri.php?reklama=sis&vrsta=468', 	'http://www.zivinice.ba/gfx/reklama/sis_468.jpg']
];

var ImageCount		= 10;			//  *****  Change this to the total number of images loaded above  ***** 		//	
var ImageDelay		= 7000;			//  *****  Set this to the delay interval desired.  5000 = 5 seconds.			// 
var LinkTarget		= "_blank"		//  *****  Defines where you want linked page to open. _self, _blank, _top, etc	//
var ImageIndex		= 0;			//  DO NOT ALTER	//
var FirstLoad 		= 0;			//  DO NOT ALTER	//
var QuickStartID 	= 0;  			//  DO NOT ALTER	//
var htmlString 		= ""			//  DO NOT ALTER 	//

ImageIndex = Math.floor(Math.random()*ImageCount);

//  This function rotates the banner  //
function ImageChange()

{		

htmlString = '<center>';
htmlString = htmlString +'<a target="';
htmlString = htmlString + LinkTarget;
htmlString = htmlString + '" href="';
htmlString = htmlString + ImageLoad[ImageIndex][0];
htmlString = htmlString + '"><img border="0" src="';				//  Image border size may be changed here				//	
htmlString = htmlString + ImageLoad[ImageIndex][1];
htmlString = htmlString + '"></a>';
htmlString = htmlString + '</center>';		

document.getElementById('MagicImage').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()