$(document).ready(function(){
	$("#nav_menu_expandable li.menu-expand > ul").each(function(){
		$(this).hide('fast');
		var _active_a = $(this).prev("a");
		var _active_a_t = _active_a.text();	
		_active_a.click(function(){
			$(this).blur();
			$("#nav_menu_expandable li.menu-expand > ul").not(":hidden").each(function(){
				$(this).hide('fast')
				$(this).parent().css({overflow:'hidden', height:'18px'})
				$(this).prev("a").css({backgroundImage:'url(/templates/j5_kmc_template/i/navmenu-expandable.gif)'});
			})
			$("#nav_menu_expandable li.menu-expand > ul").not(":visible").each(function(){
				if($(this).prev("a").text() == _active_a_t){
					//alert($(this).text());
					$(this).parent().css({overflow:'visible', height:'auto'});
					$(this).prev("a").css({backgroundImage:'url(/templates/j5_kmc_template/i/navmenu-expandable-expanded.gif)'});
					$(this).show('slow');
				}
			})
			return false;
		})
	})
})
