 $(document).ready(function(){
    
    $("td").hover(
      function () {
        $(this).addClass("hover");
      },
      function () {
        $(this).removeClass("hover");
      }
    );

	$(".MasterPlanning > a").hover(
	  function () {
		$(".Mast").addClass("hover");
	  },
	  function () {
		$(".Mast").removeClass("hover");
	  }
	);

	$(".Commercial > a").hover(
	  function () {
		$(".Comm").addClass("hover");
	  },
	  function () {
		$(".Comm").removeClass("hover");
	  }
	);

	$(".Residential > a").hover(
	  function () {
		$(".Resi").addClass("hover");
	  },
	  function () {
		$(".Resi").removeClass("hover");
	  }
	);

	$(".Educational > a").hover(
	  function () {
		$(".Educ").addClass("hover");
	  },
	  function () {
		$(".Educ").removeClass("hover");
	  }
	);

	$(".RestaurantBar > a").hover(
	  function () {
		$(".Rest").addClass("hover");
	  },
	  function () {
		$(".Rest").removeClass("hover");
	  }
	);

 });

