$(document).ready(function(){
    $('a.lightBox').lightbox({fixedNavigation:true});
    $('.gItem').hover(function(){
        $(".cub img", $(this)).animate({
            top: 40
        }, {
            duration: 1000,
            queue: false,
            easing: 'easeOutBounce'
        });
    }, function(){
    
    });
});

