(function($){
$(function(){
	$('div#sapporoNo1 h3 a').each(function(){
		var Href = $(this).attr('href');
		$(this).parent().parent().click(function() {
			window.open(Href,'_self');
			return false;
		});
	});
});
})(jQuery);

