$(function() {
	$(".scrollable").scrollable({
		size: 4
	});
	
	$("a.thumb_image").click(function(){
		var elem = $(this);
		var id = elem.attr('id').split('_')[1];
		
		$(".details").hide();
		$("#desc_" + id).show();
		
		// so we don't get the hashes in the url
		return false;
	});
	
	$("a.thumb_image").hover(function(){
			var elem = $(this);
			var div = $(this).contents('.title_overlay');
			
			div.animate({bottom:'90px'}, 250);
		},
		function(){
			var elem = $(this);
			var div = $(this).contents('.title_overlay');
			
			div.animate({bottom:'30px'}, 250);
		}
	);
});

