<!--
$(function(){
	var playItem = 0,
		title=$('.jp-interface .jp-title'),
		jPlayer=$("#jplayer"),
		myPlayList = [
			{name:"We Doen Het Als Konijnen",mp3:"audio/We_Doen_Het_Als_Konijnen.mp3"},
			{name:"Was Ik Maar Een Koe",mp3:"audio/02 Was Ik Maar Een Koe.mp3"},
			{name:"Dup Dup 2.0",mp3:"audio/04 Dup Dup 2.0.mp3"},
			{name:"Kruisstaren",mp3:"audio/03 Wat Zit Je Naar Mijn Kruis Te Staren.mp3"},
			{name:"Kroegentocht",mp3:"audio/05 Kroegentocht.mp3"}
		],		
		jPlay=function(idx){
			if(typeof idx==typeof 0)
				jPlayer.jPlayer("setMedia",myPlayList[idx]).jPlayer('play')
			if(typeof idx==typeof '')
				jPlayer.jPlayer("setMedia",myPlayList[playItem=idx=='next'?(++playItem<myPlayList.length?playItem:0):(--playItem>=0?playItem:myPlayList.length-1)]).jPlayer('play')					
			title.text(myPlayList[playItem].name)
			Cufon.refresh()
		}

	jPlayer.jPlayer({
		ready: function() {
			jPlay(playItem)
		},
		ended:function(){
			jPlay('next')
		}
	})
	
	$(".jp-prev,.jp-next")
		.click( function() { 
			jPlay($(this).is('.jp-next')?'next':'prev')
			return false;
		})
	
});
-->
