var map;var directionObj;var eventIcon;var eventActivatedIcon;var zipcodeIcon;var zipcodeActivatedIcon;var startIcon;var eventLayer;var tempLayer;var usa_center_point;var europe_center_point;function mapLoad(){map=new GMap2(document.getElementById("tour_map"));usa_center_point=new GLatLng(42,-95);europe_center_point = new GLatLng(47.75,7.07);map.addControl(new GSmallMapControl());map.addControl(new GMapTypeControl());map.setCenter(usa_center_point,3);eventIcon=new GIcon();eventIcon.image="/images/event_pin_blurred.gif";eventIcon.shadowImage="/images/event_pin_blurred.gif";eventIcon.iconSize=new GSize(32,32);eventIcon.shadowSize=new GSize(32,32);eventIcon.iconAnchor=new GPoint(17,17);eventActivatedIcon=new GIcon();eventActivatedIcon.image="/images/event_pin_focused.gif";eventActivatedIcon.shadowImage="/images/event_pin_focused.gif";eventActivatedIcon.iconSize=new GSize(32,32);eventActivatedIcon.shadowSize=new GSize(32,32);eventActivatedIcon.iconAnchor=new GPoint(17,17);zipcodeIcon=new GIcon();zipcodeIcon.image="/images/zipcode_pin_blurred.gif";zipcodeIcon.shadowImage="/images/zipcode_pin_blurred.gif";zipcodeIcon.iconSize=new GSize(32,32);zipcodeIcon.shadowSize=new GSize(32,32);zipcodeIcon.iconAnchor=new GPoint(17,17);zipcodeActivatedIcon=new GIcon();zipcodeActivatedIcon.image="/images/zipcode_pin_focused.gif";zipcodeActivatedIcon.shadowImage="/images/zipcode_pin_focused.gif";zipcodeActivatedIcon.iconSize=new GSize(32,32);zipcodeActivatedIcon.shadowSize=new GSize(32,32);zipcodeActivatedIcon.iconAnchor=new GPoint(17,17);startIcon=new GIcon();startIcon.image="http://www.google.com/mapfiles/dd-start.png";startIcon.shadow="http://www.google.com/mapfiles/shadow50.png";startIcon.iconSize=new GSize(20,34);startIcon.shadowSize=new GSize(37,34);startIcon.iconAnchor=new GPoint(9,34);startIcon.infoWindowAnchor=new GPoint(9,2);startIcon.infoShadowAnchor=new GPoint(18,25);startIcon=new GIcon(startIcon);eventLayer=buildEvents(map);eventLayer.show();return map;}