$(document).ready(function(){   

// COPY ROOM ORDER  
  $(".new-room a").click(function() {
      $("#contact-form .section:last").after($("#contact-form .section:last").clone().addClass("next"));
      return false;
      }
    );

// MAIN MENU BEHAVIOR
  $("#mainmenu > li").hover(
      function() {
        $(this).children("ul").css({"display":"block"});
        $(this).addClass("open");
        },
      function() {
        $(this).children("ul").css({"display":"none"});
        $(this).removeClass("open");
        }
    );
  //$("#mainmenu > li > a").click( function() { return false; } );

});
