// JavaScript Document
function appear(x) {
	var c = document.getElementById("submenu_products");
	if (x) {
		c.style.display = 'block';
	} else {
		c.style.display = 'none';
	}
}
function swap(what,img) {
	what.src = img;
}
