

$(document).ready(function() {

	function addHover (){
	    $(this).addClass("hovering");
	    $(this).find("a").addClass("active"); 
        }

	function removeHover (){
	    $(this).removeClass("hovering");
	    $(this).find("a").removeClass("active");
        }

	var accountConfig = {
	    interval: 150,
	    sensitivity: 4,
	    over: addHover,
	    timeout: 150,
	    out: removeHover
	};

	$("li.account-dropdown").hoverIntent(accountConfig);
	
    });
