$(document).ready(function ()
{
	var config = {
		sensitivity: 7,
		interval: 50,
		over: function () { $(this).addClass('hover'); },
		out: function () { $(this).removeClass('hover'); },
		timeout: 200
	};
	$('#nav ul > li').hoverIntent(config);
});
