$(document).ready( function(){

	$(".menu-global > ul > li").hover( function(){
		$(this).find('> a').next().show();
	}, function(){
		$(this).find('> a').next().hide();
	})

})
