$(document).ready(function(){
    $("#tabs li.set").hover(
    function(){
        $(this).addClass("hover");
    },
    function(){
        $(this).removeClass("hover");
    });

    $(".navblockholder").hover(
    function(){
        $(this).addClass("navhover");
    },
    function(){
        $(this).removeClass("navhover");
    });

    $(".lightbox_link").lightBox();
});