var tempodown;
var tempoup;
var DivPagina=document.getElementById("content");
var posicao = parseInt(DivPagina.style.top);
var texto=document.getElementById('conteudo');
var balao=document.getElementById('balao');

function Up(qtd){
posicao +=15;
DivPagina.style.top = posicao+"px";
//alert("Up: "+DivPagina.style.top);
if(DivPagina.style.top == "-"+qtd+"px" || DivPagina.style.top == "0px"){
clearInterval(tempoup);

if(qtd=="1215"){ // HOME
texto.style.background="url('imagens/box/box_home.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat"; 
balao.style.top="180px";
balao.innerHTML=balao_home;
texto.innerHTML=texto_home;
}

if(qtd=="0"){ // QUEM SOMOS
texto.style.background="url('imagens/box/box_quemsomos.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="100px";
balao.innerHTML=balao_quemsomos;
texto.innerHTML=texto_quemsomos;
}

if(qtd=="615"){ // CLIENTES
texto.style.background="url('imagens/box/box_clientes.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="60px";
balao.innerHTML=balao_clientes;
texto.innerHTML=texto_clientes;
}

if(qtd=="1830"){ // PORTFÓLIO
texto.style.background="url('imagens/box/box_portfolio.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="130px";
balao.innerHTML=balao_portfolio;
texto.innerHTML=texto_portfolio;
}

if(qtd=="2445"){ // CONTATO
texto.style.background="url('imagens/box/box_contato.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="150px";
balao.innerHTML=balao_contato;
texto.innerHTML=texto_contato;}
}
}

function Down(qtd){
posicao -=15;
DivPagina.style.top = posicao+"px";
//alert("Down: "+DivPagina.style.top);
if(DivPagina.style.top == "-"+qtd+"px" || DivPagina.style.top == "-2560px"){
clearInterval(tempodown);

if(qtd=="1215"){ // HOME
texto.style.background="url('imagens/box/box_home.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat"; 
balao.style.top="180px";
balao.innerHTML=balao_home;
texto.innerHTML=texto_home;
}

if(qtd=="0"){ // QUEM SOMOS
texto.style.background="url('imagens/box/box_quemsomos.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="100px";
balao.innerHTML=balao_quemsomos;
texto.innerHTML=texto_quemsomos;
}

if(qtd=="615"){ // CLIENTES
texto.style.background="url('imagens/box/box_clientes.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="60px";
balao.innerHTML=balao_clientes;
texto.innerHTML=texto_clientes;
}

if(qtd=="1830"){ // PORTFÓLIO
texto.style.background="url('imagens/box/box_portfolio.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="130px";
balao.innerHTML=balao_portfolio;
texto.innerHTML=texto_portfolio;
}

if(qtd=="2445"){ // CONTATO
texto.style.background="url('imagens/box/box_contato.png') no-repeat";
balao.style.background="url('imagens/box/balao.png') no-repeat";
balao.style.top="150px";
balao.innerHTML=balao_contato;
texto.innerHTML=texto_contato;}
}
}


function Move(pagina,id){
if(DivPagina.style.top=='-1215px' || DivPagina.style.top=='0px' || DivPagina.style.top=='-615px' || DivPagina.style.top=='-1830px' || DivPagina.style.top=='-2445px'){
for ( x = 1 ; x <= 5; x++ ){document.getElementById(x).bgColor='#000000';}
document.getElementById(id).bgColor='#fc8700';	
texto.innerHTML="";
balao.innerHTML="";
texto.style.background="";
balao.style.background="";
if (pagina=="home"){
if(parseInt(DivPagina.style.top)*(-1)>1215){tempoup=setInterval("Up('1215')",25);}
else if(parseInt(DivPagina.style.top)*(-1)!=1215){tempodown=setInterval("Down('1215')",25);}
}

if (pagina=="quemsomos"){
if(parseInt(DivPagina.style.top)*(-1)>0 && parseInt(DivPagina.style.top)*(-1)!=0){tempoup=setInterval("Up('0')",25);}
}

if (pagina=="clientes"){
if(parseInt(DivPagina.style.top)*(-1)>615){tempoup=setInterval("Up('615')",25);}
else if(parseInt(DivPagina.style.top)*(-1)!=615){tempodown=setInterval("Down('615')",25);}	
}

if (pagina=="portfolio"){
if(parseInt(DivPagina.style.top)*(-1)>1830){tempoup=setInterval("Up('1830')",25);}
else if(parseInt(DivPagina.style.top)*(-1)!=1830){tempodown=setInterval("Down('1830')",25);}	
}

if (pagina=="contato"){
if(parseInt(DivPagina.style.top)*(-1)<2445 && parseInt(DivPagina.style.top)*(-1)!=2445){tempodown=setInterval("Down('2445')",25);}	
}
}
}

function Portfolio(obj1,obj2){
var i;
for (i=11;i<=14;i++) {
document.getElementById(i).className="link";
}
if(obj2=="sites"){imagens_portfolio=texto_portfolio_sites;}
if(obj2=="logomarcas"){imagens_portfolio=texto_portfolio_logomarcas;}	
if(obj2=="pecas_online"){imagens_portfolio=texto_portfolio_pecas_online;}	
if(obj2=="pecas_offline"){imagens_portfolio=texto_portfolio_pecas_offline;}
document.getElementById(obj1).className="ativado";
document.getElementById('portfolio').innerHTML=imagens_portfolio;
}
