/**
  * Sets the current config being worked with.  The passed in config is set as
  * the current config and it's configuration is loaded into memoery.
  * @param string $config The player config we would like to perform operations
  * on.
  */
 public static function setConfig($config)
 {
     LongTailFramework::$current_config = $config;
     LongTailFramework::$current_config_values = LongTailFramework::getConfigFile();
     LongTailFramework::loadPlayerFlashVars();
 }