$(document).ready(function() {
	var flashvars = {
		remoteURL:streamingplayer_remote_url
		, remoteURL2:streamingplayer_remote_url2
		, default_text:player_default_text
		, envStatus:enviroment_status
	};
	var params = {
		menu:'false'
		, wmode:'transparent'
	};
	var attributes = {};
	swfobject.embedSWF("/flash/streaming-player.swf", "head_audio_player_holder", "100%", "100%", "9.0.0", null, flashvars, params, attributes);
	
	
	
	// PLAY TRACK
	$('a.play.track').click(function(event){
		event.preventDefault();
		$('#head_audio_player_holder')[0].loadTracklist({'type':'track','id': $(this).attr('rel')});
	});
	
	// PLAY CDS
	$('a.play.cd').click(function(event){
		event.preventDefault();
		jQuery('#head_audio_player_holder')[0].loadTracklist({'type':'cd','id': $(this).attr('rel')});
	});
	
	// PLAY ALBUMS
	$('a.play.album').click(function(event){
		event.preventDefault();
		jQuery('#head_audio_player_holder')[0].loadTracklist({'type':'album','id': $(this).attr('rel')});
	});
	
	// PLAY SYMPHONY VARIATIONS
	$('a.play.symphonyvariations').click(function(event){
		event.preventDefault();
		jQuery('#head_audio_player_holder')[0].loadTracklist({'type':'symphonyvariations','id': $(this).attr('rel')});
	});
	
	
	// PLAY SYMPHONY VARIATION
	$('a.play.symphonyvariation').click(function(event){
		event.preventDefault();
		jQuery('#head_audio_player_holder')[0].loadTracklist({'type':'symphonyvariation','id': $(this).attr('rel')});
	});
	
	// PLAY SYMPHONY VARIATION MOVEMENT
	$('a.play.symphonyvariationmovement').click(function(event){
		event.preventDefault();
		jQuery('#head_audio_player_holder')[0].loadTracklist({'type':'symphonyvariationmovement','id': $(this).attr('rel')});
	});
	
	// PLAY TRACKLISTING ELEMENT
	$('a.play.tracklist_element').click(function(event){
		event.preventDefault();
		$('#head_audio_player_holder')[0].loadTracklist({'type':'tracklist_element','id': $(this).attr('rel')});
	});
});

