<!--
	// Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon();
        baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);
        baseIcon.infoShadowAnchor = new GPoint(18, 25);
        var markerImage = [
			G_DEFAULT_ICON.image,
			"http://maps.google.com/mapfiles/dd-start.png",
			"http://maps.google.com/mapfiles/dd-end.png",
			"http://esa.ilmari.googlepages.com/markeryellow.png",//3 yellow
			"http://www.google.com/uds/samples/places/temp_marker.png"//4 turquoise
			];  	
			
		rediconimage = markerImage[0];
		yellowiconimage = markerImage[3];
		turquoiseiconimage = markerImage[4];
		greeniconimage = markerImage[1];
		
		unvisited_icon =rediconimage;
		mouseover_icon =yellowiconimage;
		visited_icon   =turquoiseiconimage;
		selected_icon  =greeniconimage;
		
//-->		
