$(function(){
	//2 BOX - CON NEWS IN ROTAZIONE	   
	$("#news_dinamiche_contenitore").easySlider({
		auto: true,
		continuous: true, 
		controlsShow: false,
		pause: 5000		
	});  
	//1 BOX - CON IMAMGINI NOVITA IN ROTAZION
	var pause = 4000;		
	var News1 = $("#news_novita");
	var stringNews1 = News1.html();
	News1.wrap("<a href='/index.php?main_page=index&cPath=1'></a>");
	News1.load("/index.php?main_page=index&cPath=1 #categoryDescription img",function () { 
			$("#news_novita img:last-child").after(stringNews1); 
			var lung = $("#news_novita img").length;
			$("#news_novita img").css('display','none');
			$("#news_novita img:first-child").css('display','block');			
			News1.everyTime(pause,function(i) {
					$("#news_novita img").eq(Math.round((((i-1)/lung)-Math.floor((i-1)/lung))*lung)).css('display','none');				
					$("#news_novita img").eq(Math.round(((i/lung)-Math.floor(i/lung))*lung)).fadeIn("slow");   
			}); 		
	  });
	News1.click();
});