$(document).ready(function() {
	$('pre code').each(function() {
        eval($(this).text());
    });	
	
	$('.evolution').hover(
	 function () {
		$(".logo").css({'background-position' : '0 -68px'}, "slow");
	  }, 
	  function () {
		$(".logo").css({'background-position' : '0 0'}, "slow");
	});
	
	$("#list_m li.select").click(function(){
		$('#news div').fadeOut();
		$("#list_m li").removeClass("active");
		$(this).addClass("active");
		var id = this.id;
		id = id.replace("mese_","");
		$.ajax({
					type: "POST",
					url: "change_news.php",
					data: 'month='+id,
					success: function(msg){
						if(msg != "NACK"){
							x = msg;
							setTimeout( "aggiorna(x)" , 400);
							
						}else{
							$('#news div').fadeIn();
						}
					}
			});
	});
	
});

function aggiorna(msg){
	$('#news div').html(msg);	
	$('#news div').fadeIn();
}
