$(window).load(function(){

    $('.home-hightlight-container').jCarouselLite({
                                        btnNext: ".next" ,
                                         btnPrev: ".prev",
                                         circular: false,
                                         visible: 6,

                                     });                                   

    function checkForLogin(e){
        if (!window.isLoggedIn() ){
            window.showLoginPanel();
            e.preventDefault();
            return false;
        }
        return true;
    }

    $("#bt-create-project").click(function(){
        if (!window.isLoggedIn() ){
            window.showLoginPanel();
            return false;
        }
        return true;             
    });

    $("#bt-envie-video").click(function(){
        if (!window.isLoggedIn() ){
            window.showLoginPanel();
            return false;
        }
        return true;             
    });

});


