﻿$(document).ready(function(){
	//alert();
	$(".top_map em, top_map2 em").animate({opacity: "0.1"}, "fast");
	// наведение точку
	$(".top_map a, .top_map2 a").hover(function(){
		$(this).css('z-index', '2');
		em = $(this).find("em");
		em.css('top', '-60').css('display', 'block');
		em.animate({top: "-50", opacity: "1"}, "slow");
	},function() {
		
		em = $(this).find("em");
		em.animate({top: "-60", opacity: "0.1"}, "fast","",function(){
			em.css('display', 'none');
			$(this).css('z-index', '1');
		});
		
	});
});

