// JavaScript 
$(function(){
	//pagine
	$('.elencoToggle').each(function(){
						 
		$(this).next('div').hide();
		$(this).css({'cursor':'pointer'});

		
		$(this).click(
			function(){				
				$(this).next().toggle('fast');
			
				return false;
			});		
		
	});	

});


