// JavaScript Document
jQuery(document).ready(function() {	
	   jQuery(".category_text_menu1").click(function() {			   		
			menu_id = this.id.split("_");
			if (jQuery("#sub_menu_list_" + menu_id[1]).html() != null) {				
				if (last_opened != '' && last_opened != menu_id[1]) {						
					jQuery("#sub_menu_list_" + last_opened).fadeOut("fast",change_image);		
				}
				jQuery("#sub_menu_list_" + menu_id[1]).toggle("slow", change_image);								
				return false;
			}
	});

});

function change_image() {
	menu_id = this.id.split("_");	
	if (last_opened == menu_id[3]) {
		last_opened = '';
	} else {
		last_opened =  menu_id[3];
	}
	if (this.style.display != 'none') {		
		document.getElementById("menulink_" + menu_id[3]).parentNode.parentNode.className = 'menuli2';
	} else {
		document.getElementById("menulink_" + menu_id[3]).parentNode.parentNode.className = 'menuli';
	}
}