function aparece_des(mailx){
	$("#entrada_news").hide("slow");
	$("#msn_nes").slideDown("slow");
	setTimeout("inverso_des("+mailx+")",1000);
}

function inverso_des(mailx){
	$("#msn_nes").hide("slow");
	$("#entrada_news").slideDown("slow");
	document.getElementById('newss_text').value = 'Ingresa aquí tu e-mail';
	window.location.href="http://araucoexpress.digitaria.cl/create_account.php?mailus="+mailx;
}


function accordeon_list(muestra,all_cierra){
	var x=0;
	for(x=0; x <= all_cierra; x++){
		eval('$("#h'+x+'").hide("slow");');	
	}
	eval('$("#h'+muestra+'").slideDown("slow");');	
}

function corres_lado(veria){
	if(veria==1){
		$("#bar_second").hide("fast");
		$("#izqe").hide("slow");
		$("#dere").show("slow");
		$("#bar_first").slideToggle("fast");
	}else{
		$("#bar_first").hide("fast");
		$("#dere").hide("slow");
		$("#izqe").show("slow");
		$("#bar_second").slideToggle("fast");
	}

}