$(document).ready(function(){
	$(".headsmall").css("cursor", "pointer");
	$(".headsmall").click(function() {
		var href = $(this).find("a:first").attr("href");
		window.location = href;
	});
});
