function showHide(id)  { 
	if (document.getElementById(id).style.display != 'block') {
		document.getElementById('link'+id).style.backgroundImage = 'url("images/tree.gif")';
		document.getElementById(id).style.display = 'block'; 
	} else {
		document.getElementById(id).style.display = 'none'; 
		document.getElementById('link'+id).style.backgroundImage = 'url("images/menu.gif")';
	}
} 
function hover(id)  { 
	document.getElementById(id).style.background = '#4eb4ff'; 
} 
function normal(id)  { 
	document.getElementById(id).style.background = '#f0f0f0'; 
} 

