$(document).ready(function() {
	var config = {    
	     sensitivity: 3,
	     interval: 200,
	     over: showSelect,
	     timeout: 500,
	     out: function(){ hideSelect() }
	};

	$('#languageConstants').hoverIntent( config );
});

function showSelect () {
	$("#languageConstants > li").show("slow");
}

function hideSelect () {
	$("#languageConstants > li").hide();
	$("#languageConstants > li.first").show();
}
