function wdhideall() {
	document.getElementById('retail').style.display='none';
	document.getElementById('stock').style.display='none';
	document.getElementById('info').style.display='none';
	
	document.getElementById('retail').style.backgroundColor='';
	document.getElementById('stock').style.backgroundColor='';
	document.getElementById('info').style.backgroundColor='';
	
	document.getElementById('retail').style.color='#ffffff';
	document.getElementById('stock').style.color='#ffffff';
	document.getElementById('info').style.color='#ffffff';

/**/	document.getElementById('retailLink').style.backgroundColor='';
	document.getElementById('retailLink').style.color='#ffffff';
	document.getElementById('stockLink').style.backgroundColor='';
	document.getElementById('stockLink').style.color='#ffffff';
	document.getElementById('infoLink').style.backgroundColor='';
	document.getElementById('infoLink').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';
}