// toggle function to allow open and close position of a submenu.

function show(id,ref)
{
	document.getElementById('innero'+id).style.visibility=ref;
	document.getElementById('inner'+id).style.visibility=ref;
	document.getElementById('innerBtn'+id).style.visibility=ref;

}

