$(document).ready(function(){
						   
						   
//jQuery.easing.def = "easeOutBack";						   
						   
						   
$("#sitemap").css('bottom', '-156px');



$("#sitemap").mouseenter(function () {
		  $("#sitemap").animate({
    bottom: "-148px"
  }, 200, function() {
    // Animation complete.
  });
});

$("#sitemap").mouseleave(function () {
		  $("#sitemap").animate({
    bottom: "-156px"
  }, 600, function() {
    // Animation complete.
  });
});


$("#sitemap_button").click(function(e) {
	e.preventDefault();

  $("#sitemap").animate({
    bottom: "0px"
  }, 600, function() {
    // Animation complete.
  });
});





$("#m_azienda, #m_bagno, #m_referenze").mouseenter(function() {

  $("#menu_decorazione").animate({
    top: "50px"
  }, 400, function() {
    // Animation complete.
  });


  $("#menu_decoluce").animate({
    top: "50px"
  }, 400, function() {
    // Animation complete.
  });
});








$("#m_decorazione").mouseenter(function() {

  $("#menu_decorazione").animate({
    top: "82px"
  }, 500, function() {
    // Animation complete.
  });
});

$("#menu_decorazione").mouseleave(function () {
	$("#menu_decorazione").animate({
    top: "50px"
  }, 400, function() {
    // Animation complete.
  });
	
	$("#menu_decoluce").animate({
    top: "50px"
  }, 400, function() {
    // Animation complete.
  });
});



$("#m_decoluce").mouseenter(function() {

  $("#menu_decoluce").animate({
    top: "82px"
  }, 500, function() {
    // Animation complete.
  });
});

$("#menu_decoluce").mouseleave(function () {
	$("#menu_decoluce").animate({
    top: "50px"
  }, 400, function() {
    // Animation complete.
  });
	
	$("#menu_decorazione").animate({
    top: "50px"
  }, 400, function() {
    // Animation complete.
  });
});











});




