               $(document).ready(function() {
                /*
                *   Examples - images
                */
                $("a[rel=example_group]").fancybox({
                    'onComplete' : function() {$("#fancybox-wrap").unbind('mousewheel.fb');} , 
                    //'transitionIn'        : 'none',
                   // 'transitionOut'        : 'none',
                   'autoScale'            : false,
                    'titlePosition'     : 'over',
                    'titleFormat'        : function(title, currentArray, currentIndex, currentOpts) {
                        if(title.indexOf("http")==-1){
                            title='';
                        }
                        return '<span id="fancybox-title-over"> '  +  (title.length ? ' &nbsp; ' + 
                        "<a href='"+title+"' target='_blank' style='color:#FFF;'>Click Here to View Website</a>" : '') + '</span>';
                    }
                });

            });
