// JavaScript Document

function on(ide)
{

document.getElementById(ide).style.background="url(imagens/bt_on.png)";
document.getElementById(ide).style.color="#fff";
}

function off(ide)
{
document.getElementById(ide).style.background="url(imagens/bt.png)";
document.getElementById(ide).style.color="#D7D700";



}

function on2(b)
{

document.getElementById(b).style.background="url(imagens/bt_projeto_web_off.jpg)";
document.getElementById(b).style.color="#FFF";
}

function off2(b)
{
document.getElementById(b).style.background="url(imagens/bt_projeto_web.jpg)";
document.getElementById(b).style.color="#FFFFFF";

}

function on3(c)
{

document.getElementById(c).style.background="url(imagens/bt_projeto_grafico_off.jpg)";
document.getElementById(c).style.color="#FFF";
}

function off3(c)
{
document.getElementById(c).style.background="url(imagens/bt_projeto_grafico.jpg)";
document.getElementById(c).style.color="#FFFFFF";



}

function onvis(v)
{

document.getElementById(v).style.visibility="visible";

}

function offvis(v)
{
document.getElementById(v).style.visibility="hidden";

}

function scrollstop() 
{
	document.getElementById('news').scrollAmount = 0;
//news.scrollAmount = 0;

}
function scrollplay()
 {
	 document.getElementById('news').scrollAmount = 4;
	 
 //news.scrollAmount = 4;

 }

