function musique_callback(e)
{
	var obj = document.getElementById(e.id);
	obj.addControllerListener("ITEM", 'musique_itemListener');
	musique_printItemData(e.id,0);
}

function musique_itemListener(obj)
{
	musique_printItemData(obj.id, obj.index);
}

function musique_printItemData(playerid,theIndex)
{
	var plst = null;
	var player = document.getElementById(playerid);
	plst = player.getPlaylist();
	var info = player.id.replace('_player', '_info');
	if (plst && plst[theIndex] && $(info)) {
		var txt = plst[theIndex].title;
		if(plst[theIndex].author != '')
			txt = plst[theIndex].author+' '+txt;
		//txt += ' '+plst[theIndex].duration;
		$(info).update(txt);
	} 	
}
