
$(document).ready(function(){

	$("#language_selection").hoverIntent(showSub,hideSub);
	$("#language_selection").hoverIntent({
		sensitivity: 3, 
		interval: 200, 
		over: showSub, 
		timeout: 500, 
		out: hideSub
	});

});

function showSub(){ $(this).children("ul").fadeIn("slow");}
function hideSub(){ $(this).children("ul").fadeOut("slow");}

