var current_cat_active;
$(document).ready(function(){
$("ul.rootmenu li").click(function(e){
	if ($(this).children(".submenu").is(':hidden')){ $(current_cat_active).slideUp("slow");}
	$(this).children(".submenu").slideToggle("slow");
	current_cat_active=$(this).children(".submenu"); 
});});
