function wdhideall() {
	document.getElementById('gift').style.display='none';
	document.getElementById('myo').style.display='none';
	document.getElementById('bob').style.display='none';
	document.getElementById('press').style.display='none';
	document.getElementById('handy').style.display='none';
	document.getElementById('prices').style.display='none';
	document.getElementById('competitions').style.display='none';
	document.getElementById('contact').style.display='none';
	
	document.getElementById('giftLink').style.backgroundColor='';
	document.getElementById('myoLink').style.backgroundColor='';
	document.getElementById('bobLink').style.backgroundColor='';
	document.getElementById('pressLink').style.backgroundColor='';
	document.getElementById('handyLink').style.backgroundColor='';
	document.getElementById('pricesLink').style.backgroundColor='';
	document.getElementById('competitionsLink').style.backgroundColor='';
	document.getElementById('contactLink').style.backgroundColor='';
	
	document.getElementById('giftLink').style.color='#ffffff';
	document.getElementById('myoLink').style.color='#ffffff';
	document.getElementById('bobLink').style.color='#ffffff';
	document.getElementById('pressLink').style.color='#ffffff';
	document.getElementById('handyLink').style.color='#ffffff';
	document.getElementById('pricesLink').style.color='#ffffff';
	document.getElementById('competitionsLink').style.color='#ffffff';
	document.getElementById('contactLink').style.color='#ffffff';

}


function wdshow(submenu) {
	wdhideall();
	if (document.getElementById(submenu).style.display=='block') //if showing, hide.
	{
		document.getElementById(submenu).style.display='none';
		document.getElementById(submenu+'Link').style.backgroundColor='';
		document.getElementById(submenu+'Link').style.color='#ffffff';
	} else {													//if hiding, show.
		document.getElementById(submenu).style.display='block';
		document.getElementById(submenu+'Link').style.backgroundColor='#b8d774';
		document.getElementById(submenu+'Link').style.color='#000000';
	}
}
function wdhighlight(linkid) {
	document.getElementById(linkid).style.backgroundColor='#b8d774';
	document.getElementById(linkid).style.color='#000000';
}
function wdunhighlight(linkid) {
	document.getElementById(linkid).style.backgroundColor='';
	document.getElementById(linkid).style.color='#ffffff';
}