function createMarker(point, description, color, productURL) {
	
	var baseIcon = new GIcon(G_DEFAULT_ICON);
	baseIcon.iconSize = new GSize(22, 26);
	baseIcon.iconAnchor = new GPoint(9, 34);
	baseIcon.infoWindowAnchor = new GPoint(9, 2);
	// Create a lettered icon for this point using our icon class
	var letteredIcon = new GIcon();
	letteredIcon.image = "http://centralcoastdeals.com/map_icons/" + color + "Cash.png";
	letteredIcon.iconAnchor = new GPoint(10, 16);
	letteredIcon.infoWindowAnchor = new GPoint(10, 0);
	letteredIcon.iconSize = new GSize(22, 26);
	
	
	// Set up our GMarkerOptions object
	markerOptions = { icon:letteredIcon };
	var marker = new GMarker(point, markerOptions);
	
	GEvent.addListener(marker, "mouseover", function() {
		marker.openExtInfoWindow(map, color + "_window", description);
		removeImgsFromBoxes();
	});
	GEvent.addListener(marker, "mouseout", function() {
		map.closeExtInfoWindow();
	});
	GEvent.addListener(marker, "click", function() {
		map.closeExtInfoWindow();
		marker.openInfoWindowHtml(description);
		map.panBy(new GSize(0, 10250));
	});
	return marker;
}

function removeImgsFromBoxes() {
  $("#green_window img, #orange_window img, #blue_window img, #teal_window img, #purple_window img, #pink_window img").remove();
}