// JavaScript Document
function menuHover(id) {
	document.getElementById(id).style.background = '#ffffff'; 
}
function menuUnHover() {
	document.getElementById(id).style.background = '#cccccc'; 
}

function togglefromlink(id) {
	if(document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = '';
	}
	else {
		document.getElementById(id).style.display = 'none';
	}
}