$(document).ready(function(){
	$('.cover img').mouseover(function() {
	 		$(this).fadeTo(200, 0.2);
	});
	 	
	$('.cover img').mouseout(function() {
	 	$(this).fadeTo(200, 1.0);
	});
	
	// custom easing
	$.easing.custom = function (x, t, b, c, d) { 
		var s = 1.70158;  
		if((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 
	}
	
	$('#discography').scrollable({
		clickable: false,
		easing: 'custom',
		size: 1,
		speed: 300
	}).navigator('#navigator');
});