$(document).ready(function() {

	// very fancy
	$(".entry-content .wp-caption a, .thickbox").fancybox({
			'hideOnContentClick' : true,
			'transitionIn' : 'none',
			'transitionOut' : 'none',
			'titleShow' : true,
			'titlePosition' : 'inside'
		});

	$('.entry-content .gallery-icon a').attr('rel', 'gallery');
	$(".entry-content .gallery-icon a").fancybox({
			'hideOnContentClick' : 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>'; 
			}
		});
		
		
});
