$(document).ready(function() {

	$("#"+musicid).html('<iframe src="http://bandwebkit.com/music/show_player/'+musicid+'/live" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="100%" height="100%" id="frame"></iframe>');
	//REMOVED FROM ABOVE:  <br /><a href="http://www.bandwebkit.com" style="font-size:9px;text-decoration:none;">Music player powered by BandWebkit.</a>
	//Add above for branding  <br /><a href="http://www.bandwebkit.com" style="font-size:9px;text-decoration:none;">Music player powered by BandWebkit.</a>
	$.getJSON("http://www.bandwebkit.com/ext/get_music_player.php?widget="+musicid+"&jsoncallback=?", function(data){
		var height = parseInt(data.music_player_base_height);
		var width = parseInt(data.music_player_width);
		var songs = parseInt(data.songs);
		var height_per_song = parseInt(data.music_player_height_per_song);
		height = height + (height_per_song*songs);
		$("#"+musicid).height(height+9);
		$("#"+musicid).width(width);
		$("#frame").height(height);
		$("#frame").width(width);
	});

});