$(document).ready(function() {
						   
	$(".entryList").click(function() {
			var anchorTags = $(this).find(".readmore a");
			anchorTags.attr("href");
			window.location.href = anchorTags.attr("href");
	});
	
	$("p.readmore").addClass("none");		
	$(".entryList").hover(function(){
		$(this).addClass("box_hover");	
		},
		function(){
		$(this).removeClass("box_hover");	
		});
});
