$(document).ready(function(){
	$('.category').click(function(){
		location.href = $(this).children('h3').children('a').attr('href');
	});
});