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

try {
if (!cllc) { 
	cllc = {}; 
}

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

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