$(function() 
{
	$(".pulldown").hoverIntent(
	{
		interval: 50,
		sensitivity: 1,
		over: function()
		{
			$(this).addClass("hovering");
		},
		timeout: 300,
		out: function()
		{
			$(this).removeClass("hovering");
		}
	});
	
});
