$(document).ready(function(){

    // initialize 'News' scroll pane
    $('#scroll').jScrollPane({scrollbarWidth:17});

    // Navigation Hover (positions the background right instead of left)
    $("#navigation li").hover(
        function(){
            $(this).addClass("on");
        },
        function(){
            $(this).removeClass("on");
        }
    );

    $(".lightbox").lightbox({
       fitToScreen: false
    });

});