<!--
function swapPic(obj, pic_name, showmenu) {
	document.getElementById(obj).src = pic_name;
	
}

function showMenu(obj) {
	document.getElementById(obj).style.display = "block";
}

function hideMenu(obj) {
	document.getElementById(obj).style.display = "none";
}

function changeBackground(obj, color) {
	document.getElementById(obj).style.background = color;
	//alert(obj);
}

function changeColorDeault(obj, color) {
document.getElementById(obj).style.background = color;
}
// -->