// JavaScript Document
function Cerrar() {
	$("#Aviso").slideUp("fast");
	var id = 1;
	$("#verAviso").html('<span class="boton" style="width:45px; margin:0"><a href="javascript: showAviso();">Mostrar</a></span><span class="cajaflotante" style="width:510px; height:18px; background-image:url(http://www.fotorevista.com.ar/Publicidad/Nikon/101013-Oferta560x379.gif)"></span>');
	clearInterval ( avisoIntervalId );
	return;
}
function showAviso() {
	if(document.getElementById("Aviso").style.display == "none")
	{
		$("#Aviso").slideDown("fast");
		$("#verAviso").html('<span class="boton" style="width:45px; margin:0"><a href="javascript: showAviso();">Ocultar</a></span>');
		clearInterval ( avisoIntervalId );
	}
	else {
		$("#Aviso").slideUp("fast");
		$("#verAviso").html('<span class="boton" style="width:45px; margin:0"><a href="javascript: showAviso();">Mostrar</a></span><span class="cajaflotante" style="width:510px; height:18px; background-image:url(http://www.fotorevista.com.ar/Publicidad/Nikon/101013-Oferta560x379.gif)"></span>');
	}
	clearInterval ( avisoIntervalId );
	return;
}
var avisoIntervalId = 0;
avisoIntervalId = setInterval("Cerrar()",6000);

