function wbwMenuOver(id){
	document.getElementById(id + '_l').style.background = "#d33333";
	document.getElementById(id + '_r').style.background = "#d33333";
	document.getElementById(id + '_pic').style.display = "block";
}
	
function wbwMenuOut(id){
	document.getElementById(id + '_l').style.background = "";
	document.getElementById(id + '_r').style.background = "";
	document.getElementById(id + '_pic').style.display = "none";
}