$(document).ready(function() {
	$("#contents li").click(function(event){
		event.preventDefault();
		window.location = $(this).find("h3:first a:first").attr("href");  
	});
	$("#contents li").hover( function() { 
		$(this).addClass("hover"); 
	},function() {
		$(this).removeClass("hover");
	});
});
	
