function abre_site(pais){
			$('#logo, #flag_br, #flag_uk, #flag_es, .txt_slogan').fadeOut('slow');
			
			if(pais=="br"){
				setTimeout("$('#welcome_br').fadeIn();",300);
				setTimeout("$('#welcome_br').fadeOut('slow');",1500);
				setTimeout("location.href = 'br/formaden.html';",2300);
			}
			else if(pais=="uk"){
				setTimeout("$('#welcome_uk').fadeIn();",300);
				setTimeout("$('#welcome_uk').fadeOut('slow');",1500);
				setTimeout("location.href = 'uk/formaden.html';",2300);
			}
			else if(pais=="es"){
				setTimeout("$('#welcome_es').fadeIn();",300);
				setTimeout("$('#welcome_es').fadeOut('slow');",1500);
				setTimeout("location.href = 'es/formaden.html';",2300);
			}
		}
