/*
 * jQuery 1.2.3 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
 * $Rev: 4663 $
 */



/* --------- HOVER EFFECT ON TOOLS MENU ---------- */

$(document).ready(function(){
						   
	$("#worldmap a").append("<em></em>");
	
	$("#worldmap a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-20"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-20"}, "slow");
	});


});


