var timerContentBanner = 0;
var thisBanner = 0;

function contentBanner()
{
	timerContentBanner = setInterval("showTimerContentBanner()",10000);
}

function showTimerContentBanner()
{
	var num_banners = CntBanners.length;
	if(thisBanner == num_banners) thisBanner = 0;
	htmlString = "";
	if(CntBanners[thisBanner][2]!= "")
	{
		if(CntBanners[thisBanner][2].search("http://www.uisp.it/abruzzo/") != -1)
		{
			target = "";
		}
		else 
		{
			target = " target='_new' ";
		}
		htmlString += "<a href=\"" + CntBanners[thisBanner][2] + "\" " + target + " >";
	}
	htmlString += "<img src=\"cnt_spots/" + CntBanners[thisBanner][0] + "\" title=\"" + CntBanners[thisBanner][1] + "\" " + 
	"alt=\"" + CntBanners[thisBanner][1]+ "\" border='0' \/>";
	
	if(CntBanners[thisBanner][2]!= "")
		htmlString += "</a>";
	
	//document.getElementById('contentBannerUp').innerHTML = htmlString;
	document.getElementById('contentBannerDown').innerHTML = htmlString;
	thisBanner++;
}


function spotMenu()
{
   var spot_items = new Array(
   new Array("menu_01.jpg", "index2.html"),
   new Array("menu_02.jpg", "index2.html"),
   new Array("menu_03.jpg", "index2.html")
   );
   
   for(i = 1; i<= 3; i++)
   {
      spot = spot_items[(i-1)];
      document.getElementById('spot_' + i).innerHTML = "<a href='" + spot[1] + "'><img src='spots/" + spot[0] +"' border='0' alt='Spot' title='Spot' /></a>\n";
   }
   
}

function bnrCnt()
{
	var bnr_content = new Array(
	new Array("content_01.jpg", "index2.html"),
	new Array("content_02.jpg", "index2.html")
	);
	
	for(i = 1; i <= bnr_content.length; i++)
	{
		bnr = bnr_content[(i-1)];
		document.getElementById('bnr_content_' + i).innerHTML = "<a href='" + bnr[1] + "'><img src='spots/" + bnr[0] +"' border='0' alt='Spot' title='Spot' /></a>\n";
	}
}
