// JavaScript Document

$(document).ready(function(){
    
    $("#displayzoom1").click(function () {
      if ($("#zoommap1:first").is(":hidden")) {
        $("#zoommap1").fadeIn("slow");
      } else {
        $("#zoommap1").fadeOut("slow");
      }
    });
	
	$("#hidesearch").click(function () {
      $("#zoommap1").fadeOut("slow");
	  $("#zoommap2").fadeOut("slow");
	  $("#zoommap3").fadeOut("slow");
    });
	
	$("#displayzoom2").click(function () {
	  if ($("#zoommap2:first").is(":hidden")) {
        $("#zoommap2").fadeIn("slow");
      } else {
        $("#zoommap2").fadeOut("slow");
      }
    });
	
	$("#hidesearch").click(function () {
      $("#zoommap1").fadeOut("slow");
	  $("#zoommap2").fadeOut("slow");
	  $("#zoommap3").fadeOut("slow");
    });
	
    $("#displayzoom3").click(function () {
	  if ($("#zoommap3:first").is(":hidden")) {
        $("#zoommap3").fadeIn("slow");
      } else {
        $("#zoommap3").fadeOut("slow");
      }
    });
	
	$("#hidesearch").click(function () {
      $("#zoommap1").fadeOut("slow");
	  $("#zoommap2").fadeOut("slow");
	  $("#zoommap3").fadeOut("slow");
    });

  });
