// sadly, IE6 needs to be pushed in the right direction
// with modern browsers, this would not be necessary; it doesn't hurt them either, though.

function smm_mouseover(element_id) {
	element = document.getElementById(element_id);
	element.style.display = 'block';
}

function smm_mouseout(element_id) {
	element = document.getElementById(element_id);
	element.style.display = 'none';
}
