	$(document).ready(function() {
		$("h1").hover(function(){ 
			if( $(this).find("a").length ) $(this).css("cursor", "pointer");
		}, function(){ });
		$("h1").click(function(){
			if( $(this).find("a").length ) window.location = $(this).find("a").attr("href");
		});
	});
