﻿$(document).ready(function(){
	$('.bigmap .switch').click(function(){
		if($(this).parent().is('.hidden')){
			$(this).html('Скрыть пиктограммы');
			$(this).parent().removeClass('hidden');
		}else{
			$(this).html('Показать пиктограммы');
			$(this).parent().addClass('hidden');
		}
		return false;
	})

	var _timer = null;
	$('.object').hover(function(){
		var _this = this;
		$(this).stop(true, true);
		_timer = setTimeout(function () {
			$(_this).find('.popup').fadeIn('fast');
			$(_this).css('z-index', 2);
		}, 250);
	},function(){
		clearTimeout(_timer);
		$(this).find('.popup').fadeOut('fast');
		$(this).css('z-index', 1);
	})
});
