$(document).ready(function(){
    $('.gallery').lightBox({
        fixedNavigation:true,
        imageBtnPrev: '/images/lightbox-btn-prev.gif',
        imageBtnNext: '/images/lightbox-btn-next.gif'
    });
    $(".c2 img, .c3 img").addClass("transparent").hover(
        function() {
            $(this).removeClass("transparent");
            $(this).css("cursor", "pointer");
        },
        function(){
            $(this).addClass("transparent");
            $(this).css("cursor", "normal");
        });
});
