$('document').ready( function(){
	
	$("img[rel]").each(function(){
		
		var url = $(this).attr("rel");				
		$(this).wrap('<a rel="gallery" href="' + url + '"></a>');
		
	})
	
	$("a[rel]").fancybox({
        'cyclic' : true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});
	
	
})

