$(document).ready(function(){
	$(".jhover").click(function(){
    	window.location=$(this).find("a").attr("href");return true;
	});
	$('.jhover').hover(function() {
		$(this).addClass('pretty-hover');
	}, function() {
		$(this).removeClass('pretty-hover');
	});
});
