/*===========================================================================
	Configuration (Global)
	
	This JavaScript sets up variables and options for:
	* Vendor code configuration
===========================================================================*/

/* YUI Shortcuts ("Yawho?")
===========================================================================*/

/**
 * By including this code before loading yahoo.js, you will get global
 * scope references to YUI's main classes as they are loaded.
 * 
 * Object lookups (a.b..n) can hurt performance, and be annoying to type.
 * This code creates shortcuts for the main classes as they are registered.
 * YAHOO.util.Dom would be available as simply Dom. Same with Event.
 * Other classes such as YAHOO.util.KeyListener would remain the same.
 * 
 * Handle with care, YUI creates a single global variable intentionally.
 * Be sure that by using this you are not clashing with any other library.
 * 
 * @requires YAHOO 2.2.0+
 */

var YAHOO_config = {
	listener: function(module) {
		if (module.mainClass) {
			window[module.name.charAt(0).toUpperCase() + module.name.substr(1).toLowerCase()] = module.mainClass;
		}
	}//,
};