function show(bannerId) {
	if (document.getElementById) {
		document.getElementById(bannerId).className="show";
	}
}

function hide(bannerId) {
	if (document.getElementById) {
		document.getElementById(bannerId).className="hide";
	}
}
