var MAP_STORE_LOCATION = "814 Stratford Square Mall Bloomingdale IL 60108";

var map;
var gdir;
var geocoder = null;
var addressMarker;

function setDirections(from)
{
      gdir.load("from: " + from + " to: " + MAP_STORE_LOCATION);
}


function initialize() {
	
  if (GBrowserIsCompatible()) 
  {      
    
	map = new GMap2($("map_canvas"));
    
	gdir = new GDirections(map, $("route"));

    setDirections(MAP_STORE_LOCATION);
  }
}
