/*
 * MOVED TO CONTACTS PAGE TEMPLATE
 */
/*window.onload = function () {
	var map = new YMaps.Map(document.getElementById("spbMap"));
	map.setCenter(new YMaps.GeoPoint(30.366695,59.92663), 15);
	var mapv = new YMaps.Map(document.getElementById("mskMap"));
	mapv.setCenter(new YMaps.GeoPoint(37.652598,55.784658), 15);

	var t = new YMaps.Template();
	t.text = '<div style="padding: 10px;">$[description]</div>';
	YMaps.Templates.add("example#template", t);

	var s = new YMaps.Style();
	s.balloonContentStyle = new YMaps.BalloonContentStyle("example#template");

	var placemark = new YMaps.Placemark(new YMaps.GeoPoint(30.366695,59.92663), {style:s} );
	map.addOverlay(placemark);
	placemark.description = '<div style="width: 180px; background: #fff;"><img src="/img/logotip.gif" />Санкт-Петербург,<br /> Полтавский проезд, д. 4</div>';


	var tv = new YMaps.Template();
	tv.text = '<div style="padding: 10px;">$[description]</div>';
	YMaps.Templates.add("example#templatev", tv);

	var sv = new YMaps.Style();
	sv.balloonContentStyle = new YMaps.BalloonContentStyle("example#template");

	var placemarkv = new YMaps.Placemark(new YMaps.GeoPoint(37.652598,55.784658), {style:sv} );
	mapv.addOverlay(placemarkv);
	placemarkv.description = '<div style="width: 180px; background: #fff;"><img src="/img/logotip.gif" />Москва,<br /> Комсомольская пл д.3/49 А </div>';

	$('#mapMenu a').bind('click', function() {
		$('#mapMenu .active').removeClass('active');
		$(this).addClass('active');




		var teq = $(this).parent().index();
		$('#mapWrap .mapB').hide().eq(teq).show();
		$('div.contC div.kontvisible').hide().eq(teq).show();
		mapv.redraw();
		return false;
	});

	$('#mskMap').hide();
}*/

