$(document).ready(function() {

    $('#overlay').bind("mouseenter", function(){
        $('#slidebottom .inner').slideDown('slow');
    });

    $('#overlay').bind("mouseleave", function() {
        $('#slidebottom .inner').slideUp('slow');
    });

    $('#wisdom').bind("mouseenter", function() {
        $("#wisdom a img").addClass("highlight");
    });
    $('#wisdom').bind("mouseleave", function() {
        $("#wisdom a img").removeClass("highlight");
    });

    $('#press').bind("mouseenter", function() {
        $("#press img").addClass("highlight");
    });
    $('#press').bind("mouseleave", function() {
        $("#press img").removeClass("highlight");
    });

    $('#torah').bind("mouseenter", function() {
        $("#torah img").addClass("highlight");
    });
    $('#torah').bind("mouseleave", function() {
        $("#torah img").removeClass("highlight");
    });
});
