function fncComoFunciona() {
	$("#conteudo").html('<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/IoYpwNOmgsw&hl=pt-br&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/IoYpwNOmgsw&hl=pt-br&fs=1" type="application/x-shockwave-flash" width="425" height="344" allowscriptaccess="always" allowfullscreen="true"></embed></object>');
}

function fncQuemSomos() {
	$("#conteudo").html('<div id="dados"><h1>About Us</h1><p>Ualah Fast Commerce & E-entertainments was founded by Martín Ignacio Izarra and Léo Souza with the aim of creating innovative projects in telecommunication focused on social nets and solutions for the day-to-day of its users.<br /><br />It is a company of new ideas, and we are initiating a new era, with technologies and concepts capable to change for the better the social and cultural vision of the people.<br /><br />Ualah is growing fast and will become one of the most promissing companies in the internet market. We have a team of specialized professionals in both online tools and other technological segments not revealed yet. </p></div>');
}

function fncTeletransporte() {
	$("#conteudo").html('<div id="dados"><h1>Teletransport?</h1><p>ARCAH uses the term "teletransport" in a metaphorical way to depart from the illusion of an extracorporeal immersion which involves the perception of Being in another projected space where one is not physically present. This modality is called Projected Teletransport.<br /><br />In this way ARCAH questions imaginarily what is energy in physical matter, scientific and philosophical experiences to promote a new way of thinking.</p></div>');
}

function fncContato() {
	$("#conteudo").html('<div id="dados"><h1>Ualah Fast Commerce & E-entertainments</h1><p>Rua Afonso Brás, 579 cj45 <br /> Cep: 04511-011 <br /> Vila Nova Conceição <br /> São Paulo - SP - Brasil <br /> contato@ualah.com</p></div>');
}

function fncReserve() {
	$("#conteudo").html('<div id="dados"><h1>Book your immersor</h1><p>Take the opportunity and book ARCAH in advance! Subscribe and follow the launching of ARCAH.  (Note: this booking could be cancelled by either side).<br /><br />Name:<br /><input type="text" size="40" id="nome" /><br /><br />E-mail:<br /><input type="text" size="40" id="email" /><br /><br /><input type="submit" value="OK" onclick="fncReservar();"></p></div>');
}

function fncReservar() {
	var nome = document.getElementById('nome').value;
	var email = document.getElementById('email').value;
	
	if(nome == "" || email == "") {
		alert("Preencha todos os campos");
	}
	else {
		$.ajax({
			type: "POST",
			url: "reservar.php",
			data: {nome:nome, email:email},
			cache: false,
			
			beforeSend: function() {
				$("#conteudo").html('<div id="dados"><h1>Sending...</h1></div>');
			},
			
			success: function(callback) {
				$("#conteudo").html('<div id="dados"><h1>Thank you.</h1><p></p></div>');
			}
		});
	}
}
