function over( sId ) {
	if ( document.all && !window.opera ) {
		document.getElementById(sId).style.display = "block";
		//document.getElementById(sId).parentNode.style.height = "290px";
	}
}

function out( sId ) {
	if ( document.all && !window.opera ) {
		document.getElementById(sId).style.display = "none";
		//document.getElementById(sId).parentNode.style.height = "35px";
	}
}