// marker || default: hidden
$('<div/>').addClass('om').appendTo(map.getDiv()).click(function(){
var that = $(this); if(!that.data('win')) { that.data('win',new google.maps.InfoWindow({content:'Это Вы'})); that.data('win').bindTo('position',map,'center'); }
that.data('win').open(map);
});