$(document).ready(function(){
$("ul#firstFridays li").hover(
      function () {
        $(this).css({'opacity' : .85});
      },
      function () {
        $(this).css({'opacity' : 1});
      }
    );


    $(".food").hide();
    $(".business").hide();
    $(".kids").hide();

    $("li#entertainment").click(function() {
        $(".entertainment").show();
        $(".food").hide();
        $(".business").hide();
        $(".kids").hide();
        return false;
    });
    $("li#food").click(function() {
        $(".entertainment").hide();
        $(".food").show();
        $(".business").hide();
        $(".kids").hide();
        return false;
    });
    $("li#business").click(function() {
        $(".entertainment").hide();
        $(".food").hide();
        $(".business").show();
        $(".kids").hide();
        return false;
    });
    $("li#kids").click(function() {
        $(".entertainment").hide();
        $(".food").hide();
        $(".business").hide();
        $(".kids").show();
        return false;
    });
});