$(document).ready(function(){
	$("div#Screenshots a").fancybox({
				'speedIn' : 400,
				'speedOut' : 400,
				'overlayShow' : true,
				'padding' : 5,
				'centerOnScroll': true,
				'titlePosition'	: 'over'
	});
	
	$("ul#screenshots li").hover(function() {
			$("span", this).stop(true, true).fadeIn(300);
	}, function() {
			$("span", this).stop(true,true).fadeOut(300);
	});

});
