var menu = {};

menu.show_hide_product_group = function(obj){
	var content = document.getElementById("article_groups_container");
	if(content.style.display == "none"){
		content.style.display = "";
	}else{
		content.style.display = "none";
	}
}