

function show(){
	document.getElementById('show_all_products_show').style.display = "none";
	document.getElementById('show_all_products_menu').style.display = "block";
	document.getElementById('show_all_products_hide').style.display = "block";
}

function hide(){
	document.getElementById('show_all_products_show').style.display = "block";
	document.getElementById('show_all_products_menu').style.display = "none";
	document.getElementById('show_all_products_hide').style.display = "none";
}
