$(document).ready(function(){
	$('.list-entry-link').click(function(){
		redirect($(this).children("a").attr('href'));
	});
	
	$('.list-entry-link').hover(
	function(){
		var height = $(this).height();	// Hack for IE6, really hard to reproduce consistently bug, on hover the height would change
		$(this).addClass('list-entry-link-hover');
		$(this).height(height); // Hack for IE6
	},
	function(){
		$(this).removeClass('list-entry-link-hover');
	});
});

function redirect(url){
	location.href = url;
}
