function abrirPag(valor){
var url = valor;

xmlRequest.open("GET",url,true);
xmlRequest.onreadystatechange = mudancaEstado;
xmlRequest.send(null);

if (xmlRequest.readyState == 1) {
document.getElementById("conteudo_mostrar").innerHTML = "<div align='center' id='loader'><img src='images/loader.gif'></div>";
}

return url;
}

function mudancaEstado(){
if (xmlRequest.readyState == 4){
document.getElementById("conteudo_mostrar").innerHTML = xmlRequest.responseText;
mudamenu();
}
}
function mudamenu(){
	$("#botao").animate({ 
// distância a partir do topo
top: "25px"

// tempo para o efeito
}, 200 );

$('#colecoes').fadeOut(100);
$('#conteudo_mostrar').fadeIn("slow");

}
function volta_normal(){
$("#botao").animate({ 
// distância a partir do topo
top: "500px"

// tempo para o efeito
}, 200 );

$('#colecoes').fadeIn(100);
$('#conteudo_mostrar').fadeOut(150);
}

function foto_maior(qual){
 var img = document.getElementById("foto_maior");
 img.src = qual;
}

function abrirPag_press(valor){
var url = valor;

xmlRequest.open("GET",url,true);
xmlRequest.onreadystatechange = mudancaEstado_2;
xmlRequest.send(null);

if (xmlRequest.readyState == 1) {
document.getElementById("conteudo_press").innerHTML = "<div align='center' id='loader'><img src='images/loader.gif'></div>";
}

return url;
}

function mudancaEstado_2(){
if (xmlRequest.readyState == 4){
document.getElementById("conteudo_press").innerHTML = xmlRequest.responseText;
mudamenu();
}
}
