$(document).ready(function () {
    $('.floorplansection').hide();
    $('#onebedroom').show();
    $('.floorplans #subnav a').click( function(e) {
        e.preventDefault();
        $('.floorplansection').hide();
        var section = this.hash.substr(1);
        $('#' + section).fadeIn(500);

    })
});
