// 2011 chri_le_roux
// show or hide menu items
function showDD(what) {
	//alert(what);
	document.getElementById(what).style.display='block';
}
function hideDD(what) {
	document.getElementById(what).style.display='none';
}

