
$(function(){
	$("#global-menu li").hover(
	function(){
		$("div:first", this).stop(true, true).show(300);
	},
	function(){
		$("div:first", this).stop(true, true).hide(100);
	});
});
