// JavaScript Document$(window).load(function(){	$('a').focus(function(){ this.blur(); });	//	$('#icone a').mouseover(function(){ $(this).animate({ opacity : 0.7 },200); });	$('#icone a').mouseout(function(){ $(this).animate({ opacity : 1 },200); });	//	$('#contatti img').mouseover(function(){ $(this).animate({ opacity : 0.7 },200); });	$('#contatti img').mouseout(function(){ $(this).animate({ opacity : 1 },200); });	//	$('#autore a').click(function(){ window.open(this.href); return false; });	//	setTimeout(function(){ $('#contenuti_attesa').html('').animate({ height : 0 , paddingTop: 0 },300); },750);	centraIcone();	$('#home').cycle();	//	var n = $('.thumbs').length;	if(n>0){		$('#numfoto').html(n+' foto');	}else{		$('#numfoto').html('Galleria in allestimento');	}});var pagAttiva = 1;function iconePagina(n){	if(pagAttiva!=n){		$('.paginazione > a').removeClass('active');;		$('#paginazione'+n).addClass('active');;		$('#icone').animate({ opacity : .3 },100)		setTimeout(function(){ $('#icone').animate({ marginLeft : -900*(n-1) },350); },100);		setTimeout(function(){ $('#icone').animate({ opacity : 1 }); },450);		pagAttiva = n;	}}function centraIcone(){	var n = $('#icone img').size();		if(n>6){		$('#icone').css({ paddingTop : 45 });	}	if(n<7){		$('#icone').css({ width : n*150 , margin : '125px auto' });	}}
