$(document).ready(function(){
formFX();						   
setMenuSl();
if($('#and_titolo').is('a')){
setTitoloBorsaHP();}
})
	
function setTitoloBorsaHP(){
	$('#and_titolo').click(function(){
									if($('#titoloborsa').css('display')=='none'){
										$('#titoloborsa').show()
										$('#btm_titolo').css({top:216});
										}
									else{
										$('#titoloborsa').hide();
										$('#btm_titolo').css({top:66});
										}	
									})
	}	
	
function formFX(){
	$('#areariservata').find('input').click(function(){
											 $(this).attr({value:''});
											 })
	$('#searchsite').click(function(){
								$(this).attr({value:''});
								})
	$('#mailing').click(function(){
								$(this).attr({value:''});
								})
	
	}	
	
function setMenuSl(){
	var mnfl=$('.fl>li');
	var layout=$('#layout').css('width');
	nfw=Math.round((985/mnfl.length));
	mnfl.each(function(i){   	  
					   $(this).css({width:nfw-1});
					   });
	var mnsl=$('.sl>li');
	nw=Math.round((986/mnsl.length));
	mnsl.each(function(i){   
					if(mnsl.length<=4){
						$(this).css({width:'225px'}); 
					}
					else{
						$(this).css({width:nw-1});
						}
		/*
					if(mnsl.length<=5&&(i+1==mnsl.length)){
						$(this).css({width:nw-1});   
					    }
					else{	   
					   $(this).css({width:nw-1});
						}
		*/				
					   });
	
	}

