function load_map($map_id) {
   $elem=document.getElementById($map_id);
	 if (GBrowserIsCompatible()) {
      var $map = new GMap2($elem);
      $point=new GLatLng(53.36379,-2.06741);
      $map.setCenter($point,13);
      var $marker = new GMarker($point);
      $map.addOverlay($marker);
      $marker.openInfoWindowHtml('<strong>Essential Learning Company</strong><br />Our Location');
      $map.addControl(new GLargeMapControl());
   }
	 return true;
}
function show_slide($slide){
   if(!$slide)$slide='address';
	 $slides=elements_with_class(document,'*','slide');
	 for($i=0;$i<$slides.length;$i++){
	    $slides[$i].style.display='none';
			document.getElementById('slide_'+$slides[$i].id).style.color='#b90066';
	 }
	 document.getElementById($slide).style.display='block';
	 document.getElementById('slide_'+$slide).style.color='#999999';
   return true;
}
