$(document).ready(function () {

    if ($('nav').length > 0) {

        var box = $('nav');
        var menu = $('#navMenu');
        var bottone = $('#bottone');

        $(bottone).toggle(

			function () {
				$(bottone).fadeOut("slow", function () {
					$(this).fadeIn("slow").addClass("close").html("chiudi");
				});
				$(box).animate({
					width: "100%"
				}, 1500,
	
				function () {
	
					$(menu).fadeIn("slow").css("display", "block");
				})
			},
	
			function () {
				$(menu).fadeOut("slow");
				$(bottone).fadeOut("slow", function () {
					$(this).fadeIn("slow").removeClass("close").html("chiudi");
				});
				$(box).animate({
					width: "93px"
				}, 1500,
	
				function () {
	
					$(bottone).removeClass("close").html("apri");
	
				})
			})

    }
});
