var player = null;
var playerReady = function(obj) {
	player = window.document[obj.id];
}

$(document).ready(function() {

	if ($('a.play_song').length) {
		var song = $('a.play_song:first').attr('href');
		swfobject.embedSWF("/js/player/player.swf", "song", "200", "20", "7", false, {file: song, autostart: false}, {allowfullscreen: false, allowscriptaccess: "always", icons: false}, {id: 'player1', name: 'player1'} );
	} else {
		$('#player span').remove();
	}

	$('a.play_song').click(function () {
		player.sendEvent('LOAD', $(this).attr('href'));
		player.sendEvent('PLAY');
		
		return false;
	});

});