function overMenu(event){
	var ele = event.element();
	new Effect.Morph(ele, {
	  style: 'color: #472014;',
	  duration: 0.2
	});
}
function outMenu(event){
	var ele = event.element();
	new Effect.Morph(ele, {
	  style: 'color: #4f4f4e;',
	  duration: 0.4
	});
}





// START GOOGLE MAP JS	
    var map = null;
    var geocoder = null;

	
    function loadgmap(mapID,address) {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById(mapID));
		map.addControl(new GSmallMapControl());
     //   map.addControl(new GMapTypeControl());
        geocoder = new GClientGeocoder();
		geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 13);
              var marker = new GMarker(point);
          	  map.addOverlay(marker);
            }
          }
        );
      }
    }
	

	
// END GOOGLE MAP JS	
