
function queueSong(pPlayer, pSong, pCurrentObj) 
{
	jwplayer(pPlayer).stop();
	jwplayer(pPlayer).load(pSong);
	jwplayer(pPlayer).play();
	
	resetSongsState();
	document.getElementById(pCurrentObj).style.color="#FFFFFF";
}

function resetSongsState()
{
	document.getElementById('noonehearsme_1').style.color="";
	document.getElementById('noonehearsme_2').style.color="";
	document.getElementById('noonehearsme_3').style.color="";
	document.getElementById('noonehearsme_4').style.color="";
	document.getElementById('noonehearsme_5').style.color="";
	document.getElementById('ontheoutside_1').style.color="";
	document.getElementById('ontheoutside_2').style.color="";
	document.getElementById('ontheoutside_3').style.color="";
	document.getElementById('ontheoutside_4').style.color="";
	document.getElementById('ontheoutside_5').style.color="";
	document.getElementById('ontheoutside_6').style.color="";
	document.getElementById('ontheoutside_7').style.color="";
	document.getElementById('ontheoutside_8').style.color="";
	document.getElementById('ontheoutside_9').style.color="";
	document.getElementById('ontheoutside_10').style.color="";
}

function rollOverImage(pCurrentObj, pImage)
{
	document.getElementById(pCurrentObj).src=pImage;
}
