// Create a base icon for all of our markers that specifies the
var fieldIcon = new GIcon();

/* SIZE OF ICON */
fieldIcon.iconSize = new GSize(35, 32);

/* LOCATION OF ICON */
fieldIcon.iconAnchor = new GPoint(10, 0);

/* IMAGE ICON LOC */
fieldIcon.image = "http://cadistrict38.org/wp/wp-content/plugins/district_googlemaps/fieldicon20.png";


/* LOCATION OF INFO WINDOW AND SHADOW */
fieldIcon.infoWindowAnchor = new GPoint(29, 2);
fieldIcon.infoShadowAnchor = new GPoint(38, 25);


/* TELLS MARKER TO USE THIS ICON OBJECT */
markerOptions = { icon:fieldIcon };

