$(document).ready(function() {
	var linkboxes = $("#topics article div");
		for (var i=0; i<linkboxes.length; i++){
		var readmores = $("h2.w-title");
		for (var j=0; j<readmores.length; j++){
			$("#topics article div").click(function() {
				var anchorTags = this.getElementsByTagName("a");
				window.location = anchorTags[0].href;
			});
		}
	}
	$("#topics article div").hover(function(){
		$(this).addClass("box_hover"); 
		},
		function(){
		$(this).removeClass("box_hover"); 
	});
}); 
