$(document).ready(function()
{
  $("div.index03_01").mouseover(function ()
  {
    $(this).addClass("index03_01_hover");
  });

  $("div.index03_01").mouseout(function ()
  {
    $(this).removeClass("index03_01_hover");
  });
});
$(document).ready(function(){
						   
	$(".index03_01").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});


$(document).ready(function()
{
  $("div.index03_02").mouseover(function ()
  {
    $(this).addClass("index03_02_hover");
  });

  $("div.index03_02").mouseout(function ()
  {
    $(this).removeClass("index03_02_hover");
  });
});
$(document).ready(function(){
						   
	$(".index03_02").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});

$(document).ready(function()
{
  $("div.index03_03").mouseover(function ()
  {
    $(this).addClass("index03_03_hover");
  });

  $("div.index03_03").mouseout(function ()
  {
    $(this).removeClass("index03_03_hover");
  });
});
$(document).ready(function(){
						   
	$(".index03_03").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});