<!-- 

function Link_OnMouseOver(theLink) {
	
	strLinkStyle = theLink.style.cssText;
	
	switch (theLink.className)
	{
		

		case'Sugestao':
		{	

			theLink.style.fontWeight  = 'bold';
			theLink.style.textDecorationUnderline = false;
			break;	
		}

		case'Button':
		{	
			theLink.style.color = "#FFCD00";			
			theLink.style.textDecorationUnderline = true;
			break;	
		}
		case'Menu':
		{	
			theLink.style.color = "#FFCD00";
			theLink.style.textDecorationUnderline = true;
			break;	
		}
		
		case'SecretarioTitulo':
		{
			theLink.style.color = "#FFffff";
			theLink.style.backgroundColor="#660000";
			theLink.style.textDecorationUnderline=false;
			break;
		}
		case'SecretarioTopico':
		{
			theLink.style.color = "#FFffff";
			theLink.style.backgroundColor="#660000";
			theLink.style.textDecorationUnderline=false;
			break;
		}

	
		default:break;
	}
}


function Link_OnMouseOut(theLink) {
	theLink.style.cssText = strLinkStyle;
}
//-->