$(function(){
	
	// Photos
	$('a.gallery_group').fancybox({
	  'overlayOpacity' : 0.75,
	  'overlayColor' : '#000000',
	  'transitionIn'	: 'elastic',
	  'transitionOut'	: 'elastic',							  	
	  'titlePosition': 'inside',		  			 
	  'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
			return '<p style=\"text-align: left; font-weight: bold;\">' + title + '</p><p style=\"text-align: left; margin-top: -10px;\">' + $('#' + currentArray[currentIndex]['id']).attr('caption') + '</p><p style=\"text-align:left;font-size: 9px; margin-top: -15px;\">Image ' +  (currentIndex + 1) + ' of ' + currentArray.length + '</p>';
	  }			  	  		  				  	
	});

	// Comment Photos
	$('a.comment_image').fancybox({
	  'overlayOpacity' : 0.75,
	  'overlayColor' : '#000000',
	  'transitionIn'	: 'elastic',
	  'transitionOut'	: 'elastic',							  	
	  'titlePosition': 'inside',		  		
	  'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
			return '<p style=\"text-align: left; font-weight: bold;\">' + title + '</p><p style=\"text-align:left;font-size: 9px; margin-top: -15px;\">Image ' +  (currentIndex + 1) + ' of ' + currentArray.length + '</p>';
	  }		  				  	
	});
	
});	

