$(document).ready(function(){
    $('a[rel=lightbox]').lightBox({fixedNavigation:true});
    
    $(function() {
        $("div#makeMeScrollable").smoothDivScroll({ 
            autoScroll: "always", 
            autoScrollDirection: "endlessloopright",
            autoScrollStep: 1,
            autoScrollInterval: 40,
            startAtElementId: "startAtMe",
            visibleHotSpots: "always" });
    });
    
    $("#makeMeScrollable").mouseover(function(){
        $("#makeMeScrollable").smoothDivScroll("stopAutoScroll");
    });
    
    $("#makeMeScrollable").mouseout(function(){
        $("#makeMeScrollable").smoothDivScroll("startAutoScroll");
    });
    
});


