menu_click = 0;
click_item = "";

function actmenu(group, this_l) {
	for (i = 0; i < group.length; i++) {
		h_n = '#cateblock_' + group[i];
		if (group[i]) if (group[i] != this_l) $(h_n).slideUp();
	}
	s_n = '#cateblock_' + this_l;
	//$(s_n).slideDown();
	//$(s_n).slideUp();
	
	if ($(s_n).is(":hidden")) {
		$(s_n).slideDown("normal");
	} else {
		//$(s_n).hide();
		$(s_n).slideUp("slow");
	}

	
}

function putout(this_b) {
	if (click_item != this_b) menu_click = 0;
	if (menu_click == 0) {
		menu_click = 1;
		if (this_b != '#search_box') $('#search_box').animate({marginLeft: -400}, 200);
		if (this_b != '#shopping') $('#shopping').animate({marginLeft: -400}, 200);
		if (this_b != '#list_all') $('#list_all').animate({marginLeft: -400}, 200);
		if (this_b != '#order_fax') $('#order_fax').animate({marginLeft: -400}, 200);
		$(this_b).animate({marginLeft: 0}, 200);
		click_item = this_b;
	} else {
		menu_click = 0;
		$(this_b).animate({marginLeft: -400}, 200);
	}
}
