function content_menu_hover(state,element)
{
	if( state == 'show' )
		element.parentNode.style.backgroundColor = '#264f41';
		
	if( state == 'hide' )
		element.parentNode.style.backgroundColor = '';
}