        YMaps.jQuery(window).load(function () {
            var map = new YMaps.Map(YMaps.jQuery("#YMapsID-2613")[0]);
            map.setCenter(new YMaps.GeoPoint(55.950472,54.729789), 15, YMaps.MapType.MAP);
            map.addControl(new YMaps.Zoom());
            YMaps.Styles.add("constructor#pmlbmPlacemark", {
                iconStyle : {
                    href : "/imgs/building.png",
                    size : new YMaps.Point(92,77),
                    offset: new YMaps.Point(-40,-77)
                }
            });
    
           map.addOverlay(createObject("Placemark", new YMaps.GeoPoint(55.950472,54.728789), "constructor#pmlbmPlacemark", ""));
            
            function createObject (type, point, style, description) {
                var allowObjects = ["Placemark", "Polyline", "Polygon"],
                    index = YMaps.jQuery.inArray( type, allowObjects),
                    constructor = allowObjects[(index == -1) ? 0 : index];
                    description = description || "<p style='padding-left: 60px'><img src='/imgs/logo.gif' width=45 style='float:left; margin-left: -55px; margin-top: -5px'/><b style='color: #000' >Прокуратура<br/>Республики<br/>Башкортостан</b></p><p style='padding-left: 10px'><small><i>Тел.: (347) 276-37-49, 272-82-02</i></small></p>";
                
                var object = new YMaps[constructor](point, {style: style, hasBalloon : !!description});
                object.description = description;
                
                return object;
            }
        });

