// JavaScript Document

$(document).ready(function(){
						   
		$('.submenu').hide();
	
		$(".vocimenu p").mouseover(
			function() { 			
			if($(this).next('.submenu').length != 0){
				if($(this).next('.submenu').is(':hidden')){ 
					$('.submenu').fadeOut('slow');
					$(this).next('.submenu').slideToggle(300).doTimeout(10000, function(){
					$('.submenu').fadeOut('slow');
					});
				} 
			} else {
				$('.submenu').fadeOut('slow');
			}
		});



$('#leohotels-cont').hide();
	$('.leohotels-button').click(function(){
					  $('#leohotels-cont').slideDown('slow'); 
					  $('.leohotels-button').slideUp('fast');
					   });
	
	$('.close').click(function(){
					  $('#leohotels-cont').slideUp('slow'); 
					  $('.leohotels-button').slideDown('slow');	
					   });
	
	$('#mostra').hide();
	
	$('#nascondi').click(function(){
					$('#article-text').slideUp('slow');
					$('#testo-articolo').fadeOut('fast');
					$(this).fadeOut('fast');
					$('#mostra').fadeIn('slow');
					  });
		
	$('#mostra').click(function(){
					$('#article-text').slideDown('slow');
					$('#testo-articolo').fadeIn('fast');
					$(this).fadeOut('fast');
					$('#nascondi').fadeIn('slow');
					  });
		

});

