$(document).ready(function()
{
  $(".hover_sub2").mouseover(function ()
  {
    $("#hover_main2").removeClass("invisible");
	$("#hover_main1").addClass("invisible");
	$("#hover_main3").addClass("invisible");
	$("#hover_main4").addClass("invisible");
	$(".hover_sub2").addClass("hover_sub_hover");
	$(".hover_sub3").removeClass("hover_sub_hover");
	$(".hover_sub4").removeClass("hover_sub_hover");
  });
  $(".hover_sub3").mouseover(function ()
  {
    $("#hover_main3").removeClass("invisible");
	$("#hover_main1").addClass("invisible");
	$("#hover_main2").addClass("invisible");
	$("#hover_main4").addClass("invisible");
	$(".hover_sub3").addClass("hover_sub_hover");
	$(".hover_sub2").removeClass("hover_sub_hover");
	$(".hover_sub4").removeClass("hover_sub_hover");
  });
  $(".hover_sub4").mouseover(function ()
  {
    $("#hover_main4").removeClass("invisible");
	$("#hover_main1").addClass("invisible");
	$("#hover_main3").addClass("invisible");
	$("#hover_main2").addClass("invisible");
	$(".hover_sub4").addClass("hover_sub_hover");
	$(".hover_sub3").removeClass("hover_sub_hover");
	$(".hover_sub2").removeClass("hover_sub_hover");
  });
  $(".hover_sub2").mouseout(function ()
  {
    $("#hover_main1").removeClass("invisible");
	$("#hover_main2").addClass("invisible");
	$("#hover_main3").addClass("invisible");
	$("#hover_main4").addClass("invisible");
	$(".hover_sub2").removeClass("hover_sub_hover");
	$(".hover_sub3").removeClass("hover_sub_hover");
	$(".hover_sub4").removeClass("hover_sub_hover");
  });
  $(".hover_sub3").mouseout(function ()
  {
    $("#hover_main1").removeClass("invisible");
	$("#hover_main3").addClass("invisible");
	$("#hover_main2").addClass("invisible");
	$("#hover_main4").addClass("invisible");
	$(".hover_sub3").removeClass("hover_sub_hover");
	$(".hover_sub2").removeClass("hover_sub_hover");
	$(".hover_sub4").removeClass("hover_sub_hover");
  });
  $(".hover_sub4").mouseout(function ()
  {
    $("#hover_main1").removeClass("invisible");
	$("#hover_main4").addClass("invisible");
	$("#hover_main3").addClass("invisible");
	$("#hover_main2").addClass("invisible");
	$(".hover_sub4").removeClass("hover_sub_hover");
	$(".hover_sub3").removeClass("hover_sub_hover");
	$(".hover_sub2").removeClass("hover_sub_hover");
  });
});

