// This adds an active class to currently selected dropdowns so the hover state
// remains when scrolling through the children.

$(document).ready(function(){	
	$("ul#nice-menu-1 li").each(function(){
		$(this).hover(function(){
			$(this).addClass("active");
		},function(){
			$(this).removeClass("active");
		});
	});
});
