$(document).ready(
	function() {
		$("#coverCatalog dl").click(function(){
			document.location = $(this).find("a").attr("href");
		});
		
	});

