//==================================================================//
//onLoad

$(document).ready(function() {
	
	//Formulários
	$("#principal form").validar();

	//Slides
	$("#topo .destaque ul").slides(5);
	
});

//==================================================================//
//Retornar querystring

function getQuery() {
	
	//buscar querystring
	this.queryText = window.location.search.replace("?","");
	var queryArray = this.queryText.split("&");
	
	//valores esperados
	this.secao = "home";
	this.sub = false;
	this.id = false;
	
	//para cada valor
	for (var i = 0; i < queryArray.length; i++) {
		if(queryArray[i]) {
			var inQuery = queryArray[i].split("=");
			eval("this." + inQuery[0] + " = " +  "'" + inQuery[1] + "'");
		}
	}
	
}

var request = new getQuery();

//==================================================================//
//Lançamento

function lancamento() {

	//inserir div
	$("<div class='laco' />").click(function () {
		$(this).fadeOut(function() { $(this).remove() });
	}).appendTo("body.home");
	
	//timer
	window.setTimeout(function(){ $(".laco").trigger("click") }, 15000);

}

//==================================================================//


