$(document).ready(function()
{
  $("div.index01_01").mouseover(function ()
  {
    $(this).addClass("index01_01_hover");
  });

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

});


$(document).ready(function()
{
  $("div.index02_01").mouseover(function ()
  {
    $(this).addClass("index02_01_hover");
  });

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

});


$(document).ready(function()
{
  $("div.index04_01").mouseover(function ()
  {
    $(this).addClass("index04_01_hover");
  });

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

});
