var playlist = [
	// object {url:string url, title:string title, artist: string artist]
	// or
	// string url
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/01MississippiKite.mp3',title:'Mississippi Kite',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/02Moan.mp3',title:'Moan',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/03Sand.mp3',title:'Sand',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/04Glass.mp3',title:'Glass',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/05Fortune.mp3',title:'Fortune',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/06Coals.mp3',title:'Coals',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/07Crooked.mp3',title:'Crooked',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/08Krait.mp3',title:'Krait',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/09Flooding.mp3',title:'Flooding',artist:'Kristin Hersh'},
	{url:'https://s3.amazonaws.com/cash_users/kristinhersh/Crooked/release/128/10Rubidoux.mp3',title:'Rubidoux',artist:'Kristin Hersh'}
];

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

player.addEvent('ready', function() {
	$('soundplayerspc').getElement('div.title').set('text','Press Play to preview the album');
});

