jQuery(document).ready(function() {

	// visivel timer - e = elemento, v = none/block, t = tempo(ms)
	function visivel(e,v,t) {
		var intervalo = window.setTimeout(function() {
			document.getElementById(e).style.display = v;
		}, t);
	}

	// barra atalaia agora (topo e rodape)
	jQuery("div#barra_aa ul li:last, div#rodape ul li:last").css({"margin-right":"0","border":"none"});
	jQuery("div#barra_aa ul li:first, div#rodape ul li:first").css("margin-left","0");

	//busca (sidebar)
	jQuery("form#form_busca input[type=text]").focus(function() {
		this.value="";
	});

});

function player(t, c, i) {
	window.open("player.php?t="+t+"&c="+c+"&i="+i, "player", "width=500,height=430");
}