function musica_stop() {
	$("#musica_stop").animate({opacity: .5}, "slow", function() {
		$(this).animate({opacity: 1}, "slow", musica_stop);
	});
}

$(document).ready(function() {
	musica_stop();

	$("#box_player").jPlayer({
		ready: function(){
			this.element.jPlayer("setFile", "images/gercont_files/tema.mp3");
			this.play();
		}
	});
	
	$('#musica_stop').click(function(){
		$('#box_player').jPlayer("stop");
		$('#musica_stop').stop();
	})
	
});

