$(document).ready(function()
{
  $("div.box_01").mouseover(function ()
  {
    $(this).addClass("box_01_hover");
  });

  $("div.box_01").mouseout(function ()
  {
    $(this).removeClass("box_01_hover");
  });
});
$(document).ready(function(){
						   
	$(".box_01").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});


$(document).ready(function()
{
  $("div.box_02").mouseover(function ()
  {
    $(this).addClass("box_02_hover");
  });

  $("div.box_02").mouseout(function ()
  {
    $(this).removeClass("box_02_hover");
  });
});
$(document).ready(function(){
						   
	$(".box_02").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});

$(document).ready(function()
{
  $("div.box_03").mouseover(function ()
  {
    $(this).addClass("box_03_hover");
  });

  $("div.box_03").mouseout(function ()
  {
    $(this).removeClass("box_03_hover");
  });
});
$(document).ready(function(){
						   
	$(".box_03").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});


