$(document).ready(function() {
	//$("#page").css("backgroundImage", "url(/ez/extension/ezwebin/design/ezwebin/images/ms"+(Math.floor(Math.random()*2+1))+".jpg)");  // mascotte
	var mascotte = new Array();
	mascotte[0] = "ms1.png";
	mascotte[1] = "ms2.png";
	mascotte[2] = "ms3.png";
	mascotte[3] = "ms4.png";
	mascotte[4] = "ms5.png";
	mascotte[5] = "ms6.png";
	
	var banners = new Array();
	banners[0] = "banner-totoro.jpg";
	banners[1] = "banner-ponyo.jpg";
	banners[2] = "banner-onepiece.jpg";
	banners[3] = "banner-sky-crawlers.jpg";
	banners[4] = "banner-coraline.jpg";
	
        var link = new Array();
	link[0] = "/index.php?/ita/Anime/Recensioni/Il-Mio-Vicino-Totoro-Edizione-Speciale";
	link[1] = "/index.php?/ita/Anime/Recensioni/Ponyo-Sulla-Scogliera-DVD-Special-Edition";
	link[2] = "/index.php?/ita/Anime/Recensioni/One-Piece-DVD-1";
	link[3] = "/index.php?/ita/Anime/Recensioni/The-Sky-Crawlers-DVD-e-Blu-Ray";
	link[4] = "/index.php?/ita/Speciali/Coraline-e-La-Porta-Magica-Special-Edition";
	
	var rand = Math.floor(Math.random()*banners.length);
	$('#header').css("backgroundImage", "url(/extension/ezwebin/design/ezwebin/images/banner/"+banners[rand]+")");
	$('#bannerTop').attr("href", link[rand]);
	//alert($('#header').css("backgroundImage") + " " +rand);
	
	rand = Math.floor(Math.random()*mascotte.length);
	$('#mascotte').css("backgroundImage", "url(/extension/ezwebin/design/ezwebin/images/mascotte/"+mascotte[rand]+")");
	
})