$(document).ready(function(){

	$("#menu ul li").hover(function(){
		//$(this).children("div.tooltip_box").show();
		$(this).children("ul").show();
		//$(this).children("a").addClass("cross_icon02");
	},function(){
		$(this).children("ul").hide();
	});
	
    /* Commentare/decommentare le 2 righe seguenti all'indicazione per
     * scegliere il comportamento
     */
     
    /* Mostra riquadro */
	// $("a.show").hide();
	// $(".book_form2").hide();
    
    /* Nascondi riquadro */
    $("a.close").hide();
    $(".book_form").hide();
    
	$("a.close").click(function(){
		$("a.show").show();
		$("a.close").hide();
		$(".book_form").hide('slow');
		$(".book_form2").show('slow');
	});
	$("a.show").click(function(){
		$("a.show").hide();
		$("a.close").show();
		$(".book_form2").hide('slow');
		$(".book_form").show('slow');
	});
	
	$("div.book_form2").click(function(){
		$("a.show").hide();
		$("a.close").show();
		$(".book_form2").hide('slow');
		$(".book_form").show('slow');
	});
});


