        
	$(document).ready(function() {

		$("#hex1").mouseover(function () {
          $("#topover").fadeIn(200);
		  $("#megahex1").fadeIn(100);
          return false;
        }); 
		$("#hex2").mouseover(function () {
          $("#leftover").fadeIn(200);
		  $("#megahex2").fadeIn(100);
          return false;
        }); 
		$("#hex3").mouseover(function () {
          $("#bottomover").fadeIn(200);
		  $("#megahex3").fadeIn(100);
          return false;
        }); 
		$("#hex4").mouseover(function () {
          $("#rightover").fadeIn(200);
		  $("#megahex4").fadeIn(100);
          return false;
        }); 
		
		$("#hex1over").mouseout(function () {
          $("#topover").fadeOut(100);
		  $("#megahex1").fadeOut(50);		  
          return false;
        }); 
		$("#hex2over").mouseout(function () {
          $("#leftover").fadeOut(100);
		  $("#megahex2").fadeOut(50);
          return false;
        }); 
		$("#hex3over").mouseout(function () {
          $("#bottomover").fadeOut(100);
		  $("#megahex3").fadeOut(50);
          return false;
        }); 
		$("#hex4over").mouseout(function () {
          $("#rightover").fadeOut(100);
		  $("#megahex4").fadeOut(50);
          return false;
        }); 
  });

