var soundFile;
var title;
var here;

$(document).ready(function(){
	
	AudioPlayer.setup("/audioplayer/swf/player.swf", {  
		width: 290,
		autostart: "yes",
		loader: "666666"
	});		
	
	$('a[href$=".mp3"], area[href$=".mp3"]').click(function(e){
		
		e.preventDefault();
		
		soundFile = $(this).attr("href");
		title = document.title;
		here = $(this);
		
		$(this).attr("href", "/audioplayer/player.html");
		$(this).colorbox({
			height:"100",
			onCleanup:function(){
				$("#audioplayer").remove();
				here.attr("href", soundFile);
			}
		});
		
	});
}); 
