var globalFx = {
		"activeVideoPlayer":null,
		"stopAllPlayers":function()
		{
			if(typeof jwplayer == 'function' )
			{
				jwplayer.utils.stopAll();
				
			}
		},
		"playlistClick": function(playerId, trackId, trigger)
		{
			globalFx.stopAllPlayers();
			jwplayer(playerId).play(true);
		
			jwplayer(playerId).playlistItem(trackId);
		
			$(trigger).parents('.HTMLPlaylist').children('li').removeClass('active');
			$(trigger).parent().addClass('active');
			
		}
}
