// JavaScript Document


var sPath = window.location.pathname;
var pagina = sPath.substring(sPath.lastIndexOf('/') + 1);
img = new Array();


function setBackgroundImage() {
	

	if ((pagina == '') || (pagina == 'index.asp') || (pagina == 'index_uk.asp') || (pagina == 'index_de.asp')) {
		
		img = imgDaCanaleNews;
		/*
		img[0] = '/gallery_bg/formato_01/f1_01.jpg';
		img[1] = '/gallery_bg/formato_01/f1_02.jpg';
		img[2] = '/gallery_bg/formato_01/f1_03.jpg'; 
		img[3] = '/gallery_bg/formato_01/f1_04.jpg';
		img[4] = '/gallery_bg/formato_01/f1_05.jpg';
		img[5] = '/gallery_bg/formato_01/f1_06.jpg';
		img[6] = '/gallery_bg/formato_01/f1_07.jpg';
		img[7] = '/gallery_bg/formato_01/f1_08.jpg';
		img[8] = '/gallery_bg/formato_01/f1_09.jpg';
		*/

		aCaso = Math.floor(img.length * Math.random());
		imageURL = img[aCaso];
		$('#corpo-cont-foto-home').html('<div class="thumbs" style="width:264px; height:344px; overflow:hidden; position:relative;"><img src="'+imageURL+'" /></div>');
		$('#corpo-cont-foto-home img').load(function(){
			makeThumbs('thumbs');
		});
	} else {
		
	
		img[0] = '/gallery_bg/formato_02/f2_01.jpg';
		
		img[1] = '/gallery_bg/formato_02/f2_02.jpg';
		
		img[2] = '/gallery_bg/formato_02/f2_03.jpg';
		
		img[3] = '/gallery_bg/formato_02/f2_04.jpg';
		
		img[4] = '/gallery_bg/formato_02/f2_05.jpg';
	
		img[5] = '/gallery_bg/formato_02/f2_06.jpg';
		
		img[6] = '/gallery_bg/formato_02/f2_07.jpg';
		
		img[7] = '/gallery_bg/formato_02/f2_08.jpg';
		
		img[8] = '/gallery_bg/formato_02/f2_09.jpg';
	
		aCaso = Math.floor(img.length * Math.random());
		imageURL = img[aCaso];
		id = 'corpo-contenuti-foto';
		var immagine = document.getElementById(id);
		if (immagine) {
	 		immagine.style.backgroundImage = imageURL == 'none' ? 'none' : 'url(' + imageURL + ')';
		}
	}
	
}


