$(document).ready(function() {
	$('.round,.pagination').corner('10px');
	
	$(".book").hover(function(){
			$(this).css('cursor', 'pointer');
			$(this).fadeOut(100);
			$(this).fadeIn(250);
			$(this).addClass('hover');
		},
			function(){
				$(this).removeClass('hover');
			}
		);
	$(".book").click(function(event){
		window.location = $(this).find('a').attr('href');
		event.preventDefault();
	});
});