(function() {
try { console.log('init console... done'); } catch(e) { console = { log: function() {} }; }

try {
if (!cllc) { cllc = {}; } //TODO: change this back to: throw "cllcObjUndefined"

cllc.constants = (function()
{
	var _constants = {
		BRAND_ID: 'chrysler',
		BRAND: 'Chrysler',
		AUTOMATICALLY_SHOW_VEHICLE_MENU: false,
		FEATURE_MENU_PADDING: 1
	}
	
	return {
		get: function(which) {
			return _constants[which];
		}
	};
})();

} catch(e) { console.log("error: " + e); }
})();