$(document).ready(function(){

	$("#mainNav a").append("<em></em>");

	$("#mainNav a").hover(function() {
	  $(this).find("em").animate({opacity: "show", top: "45"}, "slow");
	  var hoverText = $(this).attr("rel");
	  $(this).find("em").text(hoverText);
	}, function() {
	  $(this).find("em").animate({opacity: "hide", top: "40"}, "fast");
	});

//	$("#mapControl ul").idTabs("map_nomal"); //

	$("#nh_skymap").click(function(){
	  $("#nh_map_sky").slideToggle("slow");
	  $(this).toggleClass("active");
	  return false;
	});

	$("#ss_skymap").click(function(){
	  $("#ss_map_sky").slideToggle("slow");
	  $(this).toggleClass("active");
	  return false;
	});

});
