    $(function() {
	$("#anchor").hide();
      $("#show").mouseout(function(event) {
        $("#anchor").hide();
        event.preventDefault();
      });

      $("#show").mouseover(function(event) {
        $("#anchor").show();
        event.preventDefault();
      });
	  
	  
	$("#anchor").hide();
      $("#anchor").mouseout(function(event) {
        $("#anchor").hide();
        event.preventDefault();
      });

      $("#anchor").mouseover(function(event) {
        $("#anchor").show();
        event.preventDefault();
      });
    });