var PE = {  
    progress: function(props){
        /** Load Up Properties Object **/
		PE.parameters = props;
		jQuery.getScript("/CAC/scripts/req/patches-retouches.js", function () {
				jQuery.getScript("/CAC/scripts/req/init.js");
			}
		);

		/** Import Plugins ** /
		 *   - This will be the new method to associate plugins with functionality from the Param component of Progressive Enhancement
		 *   - TODO: Document the Plugin Shell for Developers
		 **/
		/** Required GoC plugins **/
		 if ((PE.parameters.slideshow) && (typeof PE.parameters.slideshow != "undefined") ) { 
		 	jQuery.getScript("/CAC/scripts/plug/ss-md.js") /** Slideshow player **/
			} ;
		  if ((PE.parameters.multimedia) && (typeof PE.parameters.multimedia != "undefined") ) { 
		 	jQuery.getScript("/CAC/scripts/plug/jquery.mp-jm.js") /** media player **/
			} ;
    }
};

