$(document).ready(function(){
/*console.log('sadad');*/
	$("div.books-item").fadeTo(1, 0.7);
	
	$("div.books-item").hover(
		function () {
			$(this).fadeTo(50, 0.5);
			$(this).fadeTo(100, 1);
		},
		function () {
			$(this).fadeTo(200, 0.7);
		});
	
	/* Set the minimum height of the content box */
	if( $('#bg2 .container').eq(0).height()<350) {
		$('#bg2 .container').eq(0).height(350);
	}
	
});
