$(function(){
	
	$(".mp3,.close").hide();
	
	$(".musicLink").click(function(){
		$(".div-player").remove();						   
		$(".mp3,.close").hide();
		$(this).siblings(".mp3").jmp3({
			filepath: "http://www.collectorsstudios.com/amostras/",
			backcolor: "ffe701",
			forecolor: "c9251b",
			width: 25,
			autoplay: "true",
			showdownload: "false",
			showfilename: "false"
		});
		$(this).siblings(".mp3").show();
		$(this).siblings(".close").show();
		return false;
	});
	
	$(".close").click(function(){
		$(".div-player").html('');
		$(this).siblings(".mp3").hide();
		$(this).hide();
		return false;
	});
	
});

