/**
 * Initializes and configures all other peng libs and MUST be loaded before all other peng libs.
 * If it is included in the header the bootloader does nothing and JQuery and SWFObject must be included.
 * Remember to reflect changes here also in pengBootLoader.
 */

// Declare our "namespace".
if (typeof(pengag) == "undefined")
	pengag = {};

// IMPORTANT: Where to pull additional scripts from.
// pengag.base_path = "http://192.168.1.42/peng/";
pengag.basePath = "http://coffee-miles.de/peng/";
// This sets the version used of peng.js, pengParser.js and PengLoader.swf when loaded dynamically
pengag.versionPrefix = "v1.1/";
pengag.versionSuffix = "-1.1";

// Enable / disable firebug console debug output. 
pengag.debug = false;

// Wrapper around console.info for easy disabling / enabling of log messages. 
pengag.log = function(object)
{
	if (pengag.debug && window.console)
		console.debug(object);
}

//This is used to acces the global scope without document or window
pengag.globalAccess = this;