// Custom Marker Object
function customMarker(latlng) {
	var icon = new GIcon();
/*	icon.image = "./images/marker_HO2.png";
	icon.iconAnchor = new GPoint(10, 34);
    icon.iconSize = new GSize(20, 34);
	icon.infoWindowAnchor = new GPoint(16, 0);*/
	
//	icon.image = "./images/markerx.png";
	icon.image = "/images/light-blue/marker-house.png";
	icon.iconAnchor = new GPoint(7, 19);
    icon.iconSize = new GSize(14, 19);
	icon.infoWindowAnchor = new GPoint(16, 0);
	return icon;
}

/**
	Function: toggles the streetview overlay
	Global Vars:
	map
	streetviewcontrol
	streetOverlay
	**/

function deluxeGMarker(latlng, options, data, index) {
	this.id = "customZoomControl";
	this.map; // map object
	this.data = data;
	this.index = index;
	GMarker(this, arguments);
}

deluxeGMarker.prototype = new GMarker(new GLatLng(0, 0));
