// common.js
// 先にjQuery を読み込む必要あり


$(function() {
	
	//ボックス全体をリンク領域にする
	$(".linkbox").click(function() {
		window.location.href = ($(this).find("a").attr("href"));
	});
	
	$(".linkbox").hover(function(){
		$(this).addClass("box_hover"); 
		},
		function(){
		$(this).removeClass("box_hover"); 
	});
	
	
});

