$(document).ready(function() {

         $("a.fancybox").fancybox({
            'transitionIn'    : 'elastic',
            'transitionOut'   : 'elastic',
            'titlePosition'   : 'over',
            'titleFormat'     : function(title, currentArray, currentIndex, currentOpts) {
               return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
            }
         });

         $("a.fancybox[rel=search]").fancybox({
            'scrolling'       : 'no',
            'transitionIn'    : 'elastic',
            'transitionOut'   : 'elastic',
            'titleShow'       : 'false',
            'onClosed'        : function() {
               $("#error").hide();
            }
         });

         $("a.fancybox[rel=mailer]").fancybox({
            'scrolling'       : 'no',
            'transitionIn'    : 'elastic',
            'transitionOut'   : 'elastic',
            'titleShow'       : 'false',
            'onClosed'        : function() {
               $("#error").hide();
            }
         });
});

