
function FFMarker(){this.id;this.infoWindow;this.lat;this.lng;this.gMarker;}
FFMarker.prototype.bindClick=function(){GEvent.bind(this.gMarker,"click",this,function(){this.gMarker.openInfoWindowHtml(this.infoWindow);this.infoWindow.style.visibility="visible";});}
FFMarker.prototype.setGMarker=function(){this.gMarker=new GMarker(new GLatLng(parseFloat(this.lat),parseFloat(this.lng)),getFFIcon(this.id));}
