jQuery(document).ready(function() {

    $(".imageLigtbox").fancybox({
        'titlePosition' : 'over'
    });
    
    
    
    $(".videoLigtbox").click(function() {
    $.fancybox({
            'padding'       : 0,
            'autoScale'     : true,
            'transitionIn'  : 'none',
            'transitionOut' : 'none',
            'title'         : this.title,
            'width'         : 320,
            'height'        : 240,
            'href'          : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type'          : 'swf',
            'swf'           : {
                 'wmode'        : 'transparent',
                'allowfullscreen'   : 'true'
            }
        });

    return false;
    });
    
    
});
