/*
 *
 * Sobre 
 *
 */
 
 changer = function () {
	$("select[name=estado]").change(
		function()
		{
			$("div#cliente").html("<div style=\"text-align: center; width: 523px; height: 200px; line-height: 200px;\"><img src=\"imagens/loading.gif\" alt=\"Cargando...\" /></div>")
			url = "clientes/"+$(this).val()+".php";
			$("div#cliente").load(url)
		}
	)
	//Mudar a equipe
	$("select[name=equipe]").change(
		function()
		{
			$("div#equipes").html("<div style=\"text-align: center; width: 523px; height: 200px; line-height: 200px;\"><img src=\"imagens/loading.gif\" alt=\"Carregando...\" /></div>")
			url = "equipe/"+$(this).val()+".php";
			$("div#equipes").load(url, function() { $("div#equipes").scroll(0) } )
		}
	)
	$("div#equipes").load("equipe/diretoria.php")
	$("div#cliente").load("clientes/sp.php")
}

$(document).ready(changer)