function load() {
		var a = document.getElementById('directions');
      a.style.height = '0';
      a.style.display = "none";
		_directions = new fx.Height('directions', {duration: 400});

      loadMap();
}

function toggleDirections() {
   var a = document.getElementById('showDirections');
   
/*   window.status=_directions.el.style.display + ", " + a.style.background;*/

   if (_directions.el.style.display=="none") {
      _directions.ensureVisible();
      
      a.style.backgroundImage='url(Images/FAQ/collapseAll.gif)';
      /*a.innerHTML='Hide Directions';*/
   } else {
      _directions.ensureCollapsed();

      a.style.backgroundImage='url(Images/FAQ/expandAll.gif)';
   }
}

function expandDirections() {
   _directions.ensureVisible();
}

function collapseDirections() {
   _directions.ensureCollapsed();
}

function notifyCompleted(obj) { }
