$(document).ready(function()
{
  $(".iframe").livequery(function(){
        
        $(".iframe").fancybox({
                'titlePosition'		: 'outside',			
        		'width'				: 950,
        		'height'			: 500,
                'autoScale'     	: true,
                'transitionIn'		: 'slow',
        		'transitionOut'		: 'slow',
        		'type'				: 'iframe'
                });
  })

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

