var playlist = [
	// object {url:string url, title:string title, artist: string artist]
	// or
	// string url
	{url:'http://s3.amazonaws.com/cash_users/renminbi/Surface/mp3_128/01%20Portland.mp3',title:'01. Portland',artist:'RENMINBI'},
	{url:'http://s3.amazonaws.com/cash_users/renminbi/Surface/mp3_128/02%20Toulouse.mp3',title:'02. Toulouse',artist:'RENMINBI'},
	{url:'http://s3.amazonaws.com/cash_users/renminbi/Surface/mp3_128/03%20Set-Up.mp3',title:'03. Set-Up',artist:'RENMINBI'},
	{url:'http://s3.amazonaws.com/cash_users/renminbi/Surface/mp3_128/04%20Then%20We%20Came%20to%20the%20End.mp3',title:'04. Then We Came to the End',artist:'RENMINBI'}
];

var player = new SoundPlayer({
	playlist:playlist,
	swfLocation:"scripts/SoundPlayer.swf",
	controlImages:{previous:"images/styled_prev.png",next:"images/styled_next.png",play:"images/styled_play.png",pause:"images/styled_pause.png"},
	seekbarSpcStyle: {'position':'relative','background-color':'#000','height':'18px','width':'100%','margin-top':'4px','overflow':'hidden'},
	seekbarStyle: {'position':'absolute','background-color':'#ff4100','height':'18px','width':'0%','cursor':'pointer','z-index':'10'},
	positionStyle: {'position':'absolute','left':'0%','width':'3px','height':'18px','background-color':'#000','z-index':'15'}
});

player.addEvent('ready', function() {
	$('soundplayerspc').getElement('div.title').set('html','<span class="altcolor">press play to listen</span>');
});
