$(document).ready(function(){
	/**
	 * обработка кликов на показ карты и предприятий на карте
	 * @param {Object} this
	 */
	var mapWindow;
	$("div.showOnMap, a.res1").each(function(){
	 	$(this).bind("click", function(){
			$("dl dt.present").each(function(){
				if($(this.nextSibling).not(":hidden")){
					$(this.nextSibling).empty();
					$(this.nextSibling).animate({height: "hide", opacity: 0}, "slow");
				}
			});
			if (mapWindow && !mapWindow.closed) {
				extParam = $(this).attr("id");
				isChange = true;
				mapWindow.focus();
			} else {
				mapWindow = window.open('/file.html', '_blank', 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=1024,height=768,directories=no,location=no');
				mapWindow.focus();
				extParam = $(this).attr("id");
				isChange = true;
			}
			return false;
		});
	 });
	 
});
