$(function() {
	
	$("div.products ol li").addClass('clickable');
	
	$("div.products ol li").hover(
	function() {
		$('a', this).addClass('hover');
	},
	function() {
		$('a', this).removeClass('hover');
	});
	
	$("div.products ol li").click(function(){
		
		window.location = $(this).find("a").attr("href");
		return false;
	});
	
});