// JavaScript Document

function aparece() {
	var Obj = document.getElementById('contenido');
	var ObjSel = document.getElementById('ganadores');
	var ObjDiario = document.getElementById('diario');
	if (Obj) {
		Obj.style.overflow="hidden";
	}
	if (ObjSel) {
			ObjSel.style.visibility="hidden";
	}
	
	if (ObjDiario) {
		Effect.toggle('diario','appear');
		return false;
	}
}
function mostrarnoticia() {
	setTimeout("aparece()",1000);
}
window.onload=mostrarnoticia;