//$(function(){
/***************************/

$("#nav > .main a").append(" <span>&raquo;</span>");



AudioPlayer.setup("js/player.swf", {
	width: "100%",
	transparentpagebg: "yes",
	loader:"006bff",
	rightbg:"2BA090",
	rightbghover:"ffb500",
	righticon:"ffffff",
	righticonhover:"ffffff"
});


$("a[href*=.mp3]").each(function(index){ //find each link to an mp3
	$(this).attr("id","mp3_"+index); // give it a simple loop iterated id (because the audio-player requires it)
	AudioPlayer.embed("mp3_"+index, { // embed the player to the id we just assigned
		soundFile: $(this).attr("href"), //use the link to embed the song
		titles:" "
	});
});



/***************************/
//});

