$(document).ready(function(){
	
	// Removendo acessibilidades com mouseover. deficientes visuais navegam usando o teclado
	$("#header a").mouseover(function(){
		$(this).attr('title', '');
	});

	var buscar = $("#header .buscar input[name=buscar]").val();
	$("#header .buscar input[name=buscar]").focus(function(){
		if($(this).val() == buscar) {
			$(this).val('');
		}
	});
	$("#header .buscar input[name=buscar]").blur(function(){
		if($(this).val() == '') {
			$(this).val(buscar);
		}
	});

	$("a[rel=lightbox]").lightBox();	

});

function ligar_musica() {
	$.get("musica.php?on&rnd="+Math.random(), {}, function(data){ });	
}

function desligar_musica() {
	$.get("musica.php?off&rnd="+Math.random(), {}, function(data){ });	
}

