/* This is a script to animate the menus at magnoliaagency.se */

$(document).ready(function() {
	$("ul#localNav li").hoverIntent(
	function(event){
		$(this).children("h5").addClass("active");
		$(this).children("ul").children("li").show();
		$(this).children("ul").show("slow");
	},
	function(event) {
	});
	
	$("ul#localNav").hoverIntent(
	function(event) {
	},
	function(event) {
		// Hide all submenus if mouse is not over localNav
		$(this).children("li").children("h5").removeClass("active");
		$(this).children("li").children("ul").hide("slow");
		$(this).children("li").children("ul").children("li").hide("slow");
	});
});