function mouseover(id, status) {
	window.document.all[id].className = 'subnav_mouseover';
	window.document.all["link_" + id].className = 'subnav_mouseover';
}

function mouseout(id, status) {
	if(status == "active") {
		window.document.all[id].className = 'subnav_active';
		window.document.all["link_" + id].className = 'subnav_active';
	}
	else {
		window.document.all[id].className = 'subnav';
		window.document.all["link_" + id].className = 'subnav';
	}
}
