/**
 * Sharkworld - Project Management Game
 * Copyright (c) 2010 RANJ Serious Games
 * 
 * @id			$Id: sharkworld.screenshots.js 149 2010-11-19 19:10:44Z timk $
 * @author		Tim Kurvers <timk@ranj.nl>
 */

/**
 * Sets up the Fancybox for Sharkworld's screenshots
 */
$(document).ready(function() {
	
	$('a[rel=screenshots]').fancybox({
		'transitionIn': 'none',
		'transitionOut': 'none',
		'titlePosition': 'over',
		'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Screenshot ' + (currentIndex + 1) + ' of ' + currentArray.length + (title.length ? ' &middot; ' + title : '') + '</span>';
		}
	});
	
});

