jQuery(function($) {
				$("ul.nav li ul").hide();
				$("ul.nav li").hoverIntent({ over: function(){
					$(this).find("a.button").css({'background' : '#523090','border' : '1px solid #372c4c'});
					$(this).find("ul").slideDown("normal");
				}, out: function(){
					$(this).find("a.button").css({'background' :'url(/themes/admirals-pointe/images/nav-idle-bg.png)','border' : "1px solid #7e7e7e"});
					$(this).find("ul").slideUp("normal");
				} });
			});
