function buildRelaxLink(){
var a=$$('.titolo')
$(a[0]).innerHTML='<span class=relax><a title="versione amica degli occhi" href=javascript:relax()><img src="supp/eye.jpg"></a></span>'+$(a[0]).innerHTML
}

relax_flag=0;
function relax(){
	
	if(relax_flag==0){
		relax_flag++;
		var a=['midl','top','bot','topMenu','rightBar','bio_relations','midm']
		for(var x=0;x<a.length;x++){
			setTimeout('new Effect.Fade(\''+a[x]+'\')',Math.random()*1000)
		}
		setTimeout('new Effect.Appear(\'midm\')',2000);
		setTimeout('new Effect.Morph(\'midm\',{style:\'width:95%;font-size:1.6em\'})',1000);
	}
	else {
		relax_flag--;
		new Effect.Fade('midm')
		var a=['midl','top','bot','topMenu','rightBar','bio_relations','midm']
		for(var x=0;x<a.length;x++){
			setTimeout('new Effect.Appear(\''+a[x]+'\')',Math.random()*1000)
		}
		setTimeout('new Effect.Appear(\'midm\')',2000);
		setTimeout('new Effect.Morph(\'midm\',{style:\'width:75%;font-size:1em\'})',1000);
		}
}




