jQuery(document).ready(function() {
	jQuery("#globalNav dd").prepend("<span></span>");
	jQuery("#globalNav dd").each(function() {
		var linkText = jQuery(this).find("a").html();
		jQuery(this).find("span").show().html(linkText);
	});
	jQuery("#globalNav dd").hover(function() {
		jQuery(this).find("span").stop().animate({
			marginTop: "-75"
		}, 250);
	} , function() {
		jQuery(this).find("span").stop().animate({
			marginTop: "0"
		}, 250);
	});
});