Event.observe(window, 'load', function() 
{		
	$$('.musicSongs th').each(function(item)
	{
		Event.observe(item, 'click', function(event) 
		{ 
			openPlayer(item.readAttribute("id")); 
		});	
	});		
	
	$$('.musicSongs td.tekst').each(function(item)
	{
		Event.observe(item, 'click', function(event) 
		{ 
			showTekst((item.ancestors()[0].childElements()[1].innerHTML).gsub(' ', ''));
		});	
	});																					
}); 


function openPlayer(id)
{
 	musicPlayer= window.open("player.php?songNr=" + id, "musicPlayer", "width=300, height=180, left=800, top=40, scrollbars=no,toolbar=no,location=no"); 
 	return false;
  	if (!musicPlayer.opener)
   	musicPlayer.opener = self; 	
}


function showTekst(song)
{
	songTekst = window.open("songTekst.php?song=" + song, "songTekst", "width=300, height=800, left=400, top=40, scrollbars=no,toolbar=no,location=no"); 
 	return false;
  	if (!songTekst.opener)
   	songTekst.opener = self; 	
}
