$(document).ready(function(){

	$('#hotel').css('overflow','visible').hide();
	$('#tours').css('overflow','visible').hide();
	
	
	
	$('#bottone_hotel').click(function(){
			
		if(  $('#tours').css('overflow') == 'auto' ){
			$('#tours').hide().css('overflow','visible');
		}
		
		$('#hotel').fadeIn('slow').css('overflow','auto');

	
	});
	
	
	
	$('#bottone_tours').click(function(){
		
		if(  $('#hotel').css('overflow') == 'auto' ){
			$('#hotel').hide().css('overflow','visible');
		}
		
		
		$('#tours').fadeIn('slow').css('overflow','auto');
	
	});
	
	
	$('menu_location').hide();
	$('menu_location').fadeIn(6000);

})
