
$(document).ready(function (){
	

	//************************************************************************************
	//tacca menu
	//************************************************************************************
	
	
	
	setInterval(function() { //ripetizione della funzione per intervalli di tempo
						 
			   var menutacca_height =  $(document).height() - $('#firstpane').height() - 135;
			   $('#menu_tacca').height(menutacca_height);
			   
	}, 10); //intervallo di tempo
	
	
	//************************************************************************************
	//contenitore gallery
	//************************************************************************************
	
	setTimeout(function() {	   
			   
			   var contenitoreGallery_height = $('#testolibero_scroll').height() + 510;
			   $('#contenitoreGallery').height(contenitoreGallery_height);
	
		
	},500);
	
	//************************************************************************************
	//scheda store
	//************************************************************************************
						 
//				var scheda_store_height = $('#down_store').height() + 190;
//				$('#scheda_store').height(scheda_store_height);
						
});
	



