/* Copyright 2003-2008 Emergent Music LLC  All rights reserved.
 * $Id$
 */

// These are the notification string so we "Don't Repeat Yourself"
// So, to use a notification:
//    setup_Notifications(); // do this before using notifiations
//    $(window).trigger(FLYFI.MSG_Start);
//    $(window).bind(FLYFI.MSG_Start, function(){ /* do stuff here */});

// Process
FLYFI.MSG_Start = "start";                 // the player is ready to be initialized
FLYFI.MSG_Started = "started";             // the player has been initialized

// Track Notifications
FLYFI.MSG_TrackPlaying = "track_playing";      // passes [row]

// Library Notifications
FLYFI.MSG_LibrarySelect = "library_select";      // passes [libraryID]

// UI Notifications
FLYFI.MSG_CoolStart = "coolstart";                              // Showing the 'coolstart' display
FLYFI.MSG_PostStart = "poststart";                              // Showing the 'poststart' display
FLYFI.MSG_TBC_Updated = "tbc_updated";                          // FLYFI.tbc_articles and FLYFI.tbc_newreleases updated
FLYFI.MSG_TBC_Video_Updated = "tbc_video_updated";              // FLYFI.videoData updated

// User Notifications
FLYFI.MSG_LoginUpdated = "login_updated";  // passes []
FLYFI.MSG_LoadInitialLibraries = "load_initial_libraries"; // passes []

