/* title:         jquery.playerManager.js
 * description:   jQuery-based Player Manager.
 * version:       0.0.1
 * author:        tparent@everyzing.com
 * date:          1.4.2008
 * 
 * long desc: jquery.playerManager.js will gradually grow to take over as the de
 * 	   facto controller for the player component of the page. for now, it will handle
 * 	   toggling the snippet/full tabs and controlling the visual components controlling
 *     the player.
 *     
 * 	   NOTE: Currently, the player core functionality is contained in Player.js, PlayerManager.js
 *           and/or PlayerUtil.js (among others).
 * 
 */

(function($){
    /*
     * function: setupPlayer()
     * usage   : <yourDivNameHere>.setupPlayer()
     *           
     */
    $.fn.setupPlayer = function(){

        return this.each(function() {
            var $this = jQuery(this);
            // mediaPlayerComponent = jQuery(".player-area", $this);
		});
	}
})(jQuery);
