$(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.index02_02").mouseover(function ()
  {
    $(this).addClass("index02_02_hover");
  });

  $("div.index02_02").mouseout(function ()
  {
    $(this).removeClass("index02_02_hover");
  });
});


$(document).ready(function()
{
  $("div.index02_03").mouseover(function ()
  {
    $(this).addClass("index02_03_hover");
  });

  $("div.index02_03").mouseout(function ()
  {
    $(this).removeClass("index02_03_hover");
  });
});

$(document).ready(function()
{
  $("div.index02_04").mouseover(function ()
  {
    $(this).addClass("index02_04_hover");
  });

  $("div.index02_04").mouseout(function ()
  {
    $(this).removeClass("index02_04_hover");
  });
});