// JavaScript Document
function sobre(obj,msg,borde,fondo)
{
	window.status = msg;
	if (!borde) borde = "#9AC133";
	if (!fondo) fondo = "#ECF5D8";
	
	obj.bgColor = fondo;
	if (obj.style)
	{
		obj.style.borderStyle = "solid";
		obj.style.borderWidth = "1px";
		obj.style.borderColor = borde;
		obj.style.cursor = "hand";
	}
}

function fora(obj)
{
	obj.bgColor = "#f0f0f0";
	window.status = "";
	if (obj.style)
	{
		obj.style.borderStyle = "solid";
		obj.style.borderWidth = "1px";
		obj.style.borderColor = "#EFEFEF";
		obj.style.cursor = "default";
	}
}
function rmenuOut(obj)
{
	obj.bgColor = "";
	window.status = "";
	if (obj.style)
	{
		obj.style.cursor = "default";
		obj.bgColor = "#000000";
	}
}
function fora2(obj) //cando sae o rato do foco dos menús principais
{
	obj.bgColor = "#cccccc";
	window.status = "";
	if (obj.style)
	{
		obj.style.borderStyle = "solid";
		obj.style.borderWidth = "1px";
		obj.style.borderColor = "#aeaeae";
		obj.style.cursor = "default";
	}
}
