/*******************************************************************************
 * Syndicaster JavaScript v0.0.1
 * http://www.syndicaster.tv
 * 
 * Copyright © 2011 Critical Mention, Inc. All rights reserved.
 * 
 * Date created: Wed Aug 17 2011
 * 
 * This establishes a base "syndi" JavaScript object that acts as a container
 * for all of the Syndicaster code in order to keep it out of the global
 * namespace.
 * 
 * All Syndicaster modules should be stored within the syndi object which can
 * be extended in other files specific to individual screens in the application
 * by passing the object into a self-executing anonymous function in the same
 * way as it's done here.
 */

jQuery.noConflict();
(function (syndi, document, $, undefined) {
})(window.syndi = window.syndi || {}, document, jQuery);
