function rand_number(n)
{
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;
}

function changeImages()
{
	var i;
	var interval=8000; <!-- interval: 5000 = 5 seconds -->
	var img = new Array();
	<!-- below the images -->
	<!-- around them the links... -->
	img[0]='<a target="_blank" href="http://www.acarinitaly.com" title=""><img src="banners/acarinItaly-web.gif"  hspace="4" vspace="6" border="0" width="350" height="60" title="A Car in Italy"></a>';
	img[1]='<a href="http://www.italymag.co.uk" target="_blank"><img src="banners/italymag.gif" title="Italy Magazine" width="186" height="60" border="0" hspace="4" vspace="6"></a>';
	img[2]='<a href="http://www.informer.it" target="_blank"><img src="banners/informer_lpv.gif" width="210" height="60" border="0" hspace="4" vspace="6" title="Informer"></a>';
	img[3]='<a href="http://www.click4holidayhomes.com" target="_blank"><img src="banners/click4holidayhomes.gif" width="210" height="50" border="0" hspace="4" vspace="6" title="Click4holidayhomes"></a>';
	img[4]='<a href="http://www.internationalpropertylaw.com/" target="_blank"><img src="banners/IPL_banner.gif" hspace="4" vspace="6" title="International Property Law" width="468" height="60" border="0"></a>';
	img[5]='<a href="http://www.tuscany-umbria.com/" target="_blank"><img src="banners/terrevitae.jpg" hspace="4" vspace="6" title="Tuscany Umbria" width="400" height="60" border="0"></a>';
	img[6]='<a href="http://www.holidaysinumbria.com/" target="_blank"><img src="banners/Umbria_Holidays.gif" hspace="4" vspace="6" title="Holidays in Umbria" width="468" height="60" border="0"></a>';
	img[7]='<a href="http://www.theheartofitaly.co.uk " target="_blank"><img src="banners/heartofitaly.jpg" hspace="4" vspace="6" title="the Heart of Italy" width="251" height="60" border="0"></a>';
	img[8]='<a href="http://www.Expatboxes.com" target="_blank"><img src="banners/expatboxes.gif" hspace="4" vspace="6" title="Sending British expatriates WORLDWIDE their favourite things from HOME!! Hampers of everything that you miss, so go on, treat yourself, friend and relative today and visit expatboxes.com" width="226" height="60" border="0"></a>';
	img[9]='<a href="http://www.andreaealfonso.it" target="_blank"><img src="banners/AandAlogo.gif" hspace="4" vspace="6" title="Andrea e Afonso Banqueting" width="211" height="60" border="0"></a>';
	img[10]='<a href="http://www.alanreed.com" target="_blank"><img src="banners/Alan-Reed-banner.jpg" hspace="4" vspace="6" title="Watercolour paintings of Italy" width="468" height="60" border="0"></a>';
	img[11]='<a href="http://www.liveabroad.com" target="_blank"><img src="banners/liveabroad.gif" hspace="4" vspace="6" title="Network for Living Abroad" width="326" height="60" border="0"></a>';
	img[12]='<a href="http://www.laportaverde.com/pagina.aspx?pageid=63" target="ctd"><img src="banners/eigenbanner.gif" hspace="4" vspace="6" title="Your advert here?" width="410" height="64" border="0"></a>';
	img[13]='<a href="http://www.marmaladecat.com" target="_blank"><img src="banners/marmalade_cat.jpg" hspace="4" vspace="6" title="Shipping groceries across the world." width="532" height="64" border="0"></a>';
	img[14]='<a href="/pagina.aspx?pageid=130" target="ctd"><img src="banners/banner_villa_rosa3.gif" hspace="4" vspace="6" title="Stay at B&amp;B Villa Rosa" width="400" height="60" border="0"></a>';
	img[15]='<a href="http://www.hifx.co.uk/banner.asp?originatorID=LaPortaVerde" target="_blank"><img src="http://www.hifx.co.uk/htmlemail/468x60banner.gif" hspace="4" vspace="6" title="Hifx" width="468" height="60" border="0"></a>';
	img[16]='<a href="http://www.anrdoezrs.net/click-2050444-10386450" target="_blank"><img src="banners/skype.gif" hspace="4" vspace="6" title="Skype" width="468" height="60" border="0"></a>';
	img[17]='<a href="http://www.jacquielawson.com/" target="_blank"><img src="http://www.jacquielawson.com/banners/banner1.gif" hspace="4" vspace="6" title="Jacquie Lawson e-cards" width="468" height="60" border="0"></a>';
	img[18]='<a href="http://www.baydonhill.com/" target="_blank"><img src="banners/baydonhill.gif" hspace="4" vspace="6" title="Baydon Hill" width="468" height="60" border="0"></a>';
	img[19]='<a href="http://www.holidaylets.net/" target="_blank"><img src="banners/holidaylets.gif" hspace="4" vspace="2" title="Holidaylets.net" width="393" height="73" border="0"></a>';
	img[20]='<a href="http://umbria.angloinfo.com/" target="_blank"><img src="banners/AngloInfo.gif" hspace="4" vspace="2" title="Anglo Info" width="219" height="60" border="0"></a>';
	
		
	var total_img = 21; 
	var i=rand_number(total_img); 
	document.getElementById('banner').innerHTML=img[i];
	setTimeout("changeImages()",interval);
}
function checkLoad(){
	if (document.getElementById('banner')){
		changeImages();
	} else {
		setTimeout("checkLoad()",500);
	}

}
checkLoad();