jQuery(document).ready(function(){
 jQuery("#mapImageLarge").hide();
 jQuery("#print a").click(
  function() {
   jQuery("#nav, #searchForm, #shareThis, #mapImage, #SideNav").hide();
   jQuery("#mapImageLarge").show();
   window.print();
   alert("Thank you for printing. The page will be reset now.")
   window.setTimeout(
    function() {
     jQuery("#nav, #searchForm, #shareThis, #mapImage, #SideNav").slideDown("slow");
     jQuery("#mapImageLarge").slideUp("slow");
    }
   , 200);
   return false;
  }
 );
});


