$(function(){
/***************************/

$("#nav > .main a").append(" <span>&raquo;</span>");



AudioPlayer.setup("scripts/player.swf", {
	width: "300px",
	transparentpagebg: "yes",
	bg:"2f1c1a",
	leftbg:"2f1c1a",
	border:"2f1c1a",
	rightbg:"dcc168",
	volslider:"dcc168",
	rightbghover:"ffee61",
	track:"2f1c1a",
	loader:"71443f",
	tracker:"71443f",
	lefticon:"ffffff",
	righticon:"ffffff",
	voltrack:"ffffff",
	text:"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
		artists:"Curt Harpold",
		titles:$(this).html()
	});
});



/***************************/
});
