    YMaps.jQuery(window).load(function () {
        var map = new YMaps.Map(YMaps.jQuery("#YMapsID-2356")[0]);
        map.setCenter(new YMaps.GeoPoint(37.576166,55.67711), 15, YMaps.MapType.MAP);
        map.addControl(new YMaps.Zoom());
        map.addControl(new YMaps.ToolBar());
        map.addControl(new YMaps.TypeControl());

        YMaps.Styles.add("constructor#pmdbmPlacemark", {
            iconStyle : {
                href : "http://api-maps.yandex.ru/i/0.3/placemarks/pmdbm.png",
                size : new YMaps.Point(28,29),
                offset: new YMaps.Point(-8,-27)
            }
        });


        YMaps.Styles.add("constructor#pmgnmPlacemark", {
            iconStyle : {
                href : "http://api-maps.yandex.ru/i/0.3/placemarks/pmgnm.png",
                size : new YMaps.Point(28,29),
                offset: new YMaps.Point(-8,-27)
            }
        });


        YMaps.Styles.add("constructor#B832FDc85Polyline", {
            lineStyle : {
                strokeColor : "B832FDc8",
                strokeWidth : 5
            }
        });
       map.addOverlay(createObject("Placemark", new YMaps.GeoPoint(37.58093,55.677183), "constructor#pmdbmPlacemark", "Указатель <br/>MCN IT Business park <br/>(синего цвета)"));
       map.addOverlay(createObject("Placemark", new YMaps.GeoPoint(37.58462,55.675461), "constructor#pmgnmPlacemark", "ООО НПГ \"Традиция\""));
       map.addOverlay(createObject("Polyline", [new YMaps.GeoPoint(37.56364,55.678394),new YMaps.GeoPoint(37.566773,55.681207),new YMaps.GeoPoint(37.579476,55.676866),new YMaps.GeoPoint(37.580678,55.677278),new YMaps.GeoPoint(37.58175,55.675629),new YMaps.GeoPoint(37.584669,55.675581)], "constructor#B832FDc85Polyline", ""));
        
        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 || "";
            
            var object = new YMaps[constructor](point, {style: style, hasBalloon : !!description});
            object.description = description;
            
            return object;
        }
    });

