// JavaScript Document

$(document).ready(function (){
	
	var alt_tot = 0;
	
	$(".items div").each(function(){
		alt = $(this).height();
		$(this).css({height: alt}); //assegno altezza a ogni elemento per il corretto funzionamento
		alt_tot += $(this).height;
	});
	//$(".items").css("height", alt_tot);
	$("#box_news").scrollable({ 
        vertical:true,  
        size: 4,
		speed: 800
	}).circular().autoscroll({
		autoplay: true,
		interval: 3000
	});
});

