$(function(){
	
	$(".hp_item,.hp_blogitem").hover(function() {
		$(this).css("cursor","pointer");
	});
	$(".hp_item,.hp_blogitem").click(function() {
		//Get href from child links
		var linktarget = $(this).find('a').eq(0).attr("href");
		window.location.href = linktarget;
	});
	
});