$(document).ready(function(){

    $("#storeyListButton").click(function () {
      $("#topMenuStoreyList").slideToggle("normal");
      return false;
    });
    /*
    $("#storeyListButton").mouseover(function () {
      $("#topMenuStoreyList").slideDown("normal");
      return false;
    });
    //*/

    $(document.body).click(function(){
      $("#topMenuStoreyList").slideUp("normal");
    });
    


});

