$(document).ready(function(){
	
	$('.musicLyricsLink').click(function() {
		var segments = $(this).attr('id').split('_');
		var lyrics = $('#musicLyricsContainer_'+segments[1]).html();
		new Boxy(lyrics, {modal: true, unloadOnHide: true, closeable:true, title:"Lyrics" } );
		return false;		
	});
	
	$('.musicInfoLink').click(function() {
		var segments = $(this).attr('id').split('_');
		var info = $('#musicInfoContainer_'+segments[1]).html();
		new Boxy(info, {modal: true, unloadOnHide: true, closeable:true, title:"Track Information" } );
		return false;		
	});
	
});