$(document).ready(function(){
	var id_finded = window.location.hash.substr(1,1);
	var hash = window.location.hash.substr(1);
	//alert(hash);
	
	$('.bookSelect').css('cursor','pointer');
	$('.bookSelect').live('click', function(){
		window.location.hash = $(this).attr('title');
		 
		var myId=$(this).attr('id');
		$('.livresList').hide();
		$('#livreDetail'+myId).fadeIn(500);
		
		$('.livreImage').hide();
		$('#livreImg'+myId).fadeIn(500);
		
	});
	
	if((id_finded!='')&&((id_finded==1)||(id_finded==2)||(id_finded==3)||(id_finded==4))){
		var myId=id_finded;
		$('.livresList').hide();
		$('#livreDetail'+myId).fadeIn(500);
		
		$('.livreImage').hide();
		$('#livreImg'+myId).fadeIn(500);
	}
	
	
});


