$().ready(function(){											

	$("a[rel^='fancybox']").fancybox({
		'zoomSpeedIn': 1000,
		'zoomSpeedOut': 0,
		'overlayShow': true,
		'titlePosition': 'over',
		'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + title + '<br />' + (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
		}
	});
	
	$(".scrollable").scrollable({
		size: 1,
		easing: 'custom',
		speed: 600,
		clickable: false
	})
	
	$.easing.custom = function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	}
	
	$(".r").hover(function() {
		$("table", this).fadeIn();
	}, function() {
		$("table", this).fadeOut();
	});

});