function Mostrar(elemento)
{
 elem = document.getElementById(elemento);
 elem.style.display = "block";
}
function Mostrarv(elemento)
{
 elem = document.getElementById(elemento);
 elem.style.visibility = "visible";
}

function Mostrari(elemento)
{
 elem = document.getElementById(elemento);
 elem.style.display = "inline";
}

function Mostrart(elemento)
{
 elem = document.getElementById(elemento);
 elem.style.display = "table";
}

function Ocultar(elemento)
{
 elem = document.getElementById(elemento);
 elem.style.display = "none";
}
function Ocultarv(elemento)
{
 elem = document.getElementById(elemento);
 elem.style.visibility = "hidden";
}

function Interruptor(elemento)
{
 elem = document.getElementById(elemento);
 if(elem.style.display=="none") {elem.style.display = "block";} else {elem.style.display = "none";}
}

function Interruptori(elemento)
{
 elem = document.getElementById(elemento);
 if(elem.style.display=="none") {elem.style.display = "inline";} else {elem.style.display = "none";}
}
function bajaaleta(){
$('#foot_fijo').animate({bottom:"-88"},1500);	
$('#subefoot').css("display","block");
$('#balafoot').css("display","none");	
	
	
}
function subealeta(){
$('#foot_fijo').animate({bottom:"0"},1500);	
$('#subefoot').css("display","none");
$('#balafoot').css("display","block");	
	
	
}

	


