$(document).ready(function() {

    // Activate Neighborhood Photos Lightbox
    $('#banner p').addClass('white_brd');

    // Activate Neighborhood Photos Lightbox
    $('#photos a').lightBox();

    // Neighborhood Tabs
    $('#tabs ul li a').click(function() {
        $.activetab = $(this).attr('href');
        $('#tabs ul li').removeClass('active')
        $(this).parent().addClass('active');
        $('.tab_content').hide();
        $($.activetab).show();
        return false;
    });

});