// JavaScript Document

function fundo_download( elemento ){
	document.getElementById( elemento.id ).className = "mouse_over download";
	//document.getElementById( "conteudo" ).className = "mouse_over";
}

function fundo_normal( elemento ){
	document.getElementById( elemento.id ).className = "bordaBox download";
	//document.getElementById( "conteudo" ).className = "mouse_over";
}

//================================================================================================


function sete_midia(pagina, ano, tipo) { //start function when any link is clicked
	$("#area_setemidia").fadeOut("normal");
	 setTimeout( function(){
		$.ajax({
			method: "get",url: pagina, data: "ano="+ ano + "&tipo=" + tipo,
			//beforeSend: function(){$("#loading").show("fast");}, //show loading just when link is clicked
			//complete: function(){ $("#loading").fadeIn("slow");}, //stop showing loading when the process is complete
			success: function(html){ //so, if data is retrieved, store it in html
			$("#area_setemidia").html(html); //show the html inside .eventos div
			$("#area_setemidia").fadeIn("normal"); //animation
			execJS(document.getElementById("principal"));
			}
		}); //close $.ajax
	}, 500); //close setTimeout
} //close click(


//================================================================================================


function sete_midia_campanhas(pagina, ano, tipo, Numpagina) {
	$("#area_campanhas").fadeOut("normal");
	 setTimeout( function(){
		$.ajax({
			method: "get",url: pagina, data: "ano="+ ano + "&tipo=" + tipo + "&pagina=" + Numpagina,
			success: function(html){
			$("#area_campanhas").html(html);
			$("#area_campanhas").fadeIn("normal");
			execJS(document.getElementById("principal"));
			}
		});
	}, 500);
}