function doneYet(){
		niftyplayer('niftyPlayer1').registerEvent('onSongOver', ' playHistory(); loadTrack(); startSong();');			// Register End Event
	}
	
	function startSong(){
		if (niftyplayer('niftyPlayer1').getState() == 'paused'){								    // Check if Paused
			niftyplayer('niftyPlayer1').playToggle();
		}
		else{
			niftyplayer('niftyPlayer1').loadAndPlay(songURL);
		}
	}
	
	function playHistory(){
		if (typeof(window['lastSong4']) != 'undefined'){lastSong5 = lastSong4; document.getElementById("history5").innerHTML = '5. '+lastSong5;}
		if (typeof(window['lastSong3']) != 'undefined'){lastSong4 = lastSong3; document.getElementById("history4").innerHTML = '4. '+lastSong4;}
		if (typeof(window['lastSong2']) != 'undefined'){lastSong3 = lastSong2; document.getElementById("history3").innerHTML = '3. '+lastSong3;}
		if (typeof(window['lastSong']) != 'undefined'){lastSong2 = lastSong; document.getElementById("history2").innerHTML = '2. '+lastSong2;}
		lastSong = title+' by '+artist;
		document.getElementById("history1").innerHTML = 'play history<br />1. '+lastSong;
		
		
		
		
	}