// JavaScript 
$(document).ready(function() {  
    $("div.sitemapbutton").click(  
  
        function(){ $("div#map").animate({  
        height: "430px" }, "slow"); $("div.sitemapbutton").toggle();  
            }); 
			
			$("div#hide_button").click(function(){  
        $("div#map").animate({  
            height: "15px" 
  
        }, "fast");   
      });         
});  