/*
 * Javascript
 *
 */

function toggleMenu(id){
	var cur=$("li#" + id + " ul");
	
	//alert("toggle: " + id + ", cur: + " + cur.length);
	
	var visible=cur.is(':visible');
	
	hideMenus();
	
	if(!visible){
		cur.show();
	}
	
}

function hideMenus(){
	var others=$("ul.CmsKohlCategory1Menu");
	
	//alert("hidemenus: " + others.length);
	
	others.hide();
}
