var MobilePromoManager = function() {
	var _currentPromos = [ 
	/* { 
			'name' : '2010summerevent_form',
			'franchises' : 'Chevrolet', 
			'url' : '/AboutSpecials?promo=2010summerevent_form', 
			'campaign' : '2010summerevent_form', 
			'group' : 'Promo_GM_Chevy_Malibu_hide',
			'startDate' : '7/12/2010',
			'endDate' : '8/12/2010'
		} */
		{
			'name' : 'gmc_2012_pday_form',
			'franchises' : 'GMC', 
			'url' : 'AboutSpecials?p=gmc_2012_pday_form', 
			'campaign' : 'gmc_2012_pday_form_mobile', 
			'group' : '',
			'startDate' : '02/17/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : 'buick_2012_pday_form',
			'franchises' : 'Buick', 
			'url' : 'AboutSpecials?p=buick_2012_pday_form', 
			'campaign' : 'buick_2012_pday_form_mobile', 
			'group' : '',
			'startDate' : '02/16/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : 'cadillac_shield_form',
			'franchises' : 'Cadillac', 
			'url' : 'AboutSpecials?promo=cadillac_shield_form', 
			'campaign' : 'cadillac_shield_form_mobile', 
			'group' : '',
			'startDate' : '02/11/2011',
			'endDate' : ''
		},{
			'name' : '2012_cadillac_escalade_2wd',
			'franchises' : 'Cadillac', 
			'url' : 'AboutSpecials?p=2012_cadillac_escalade_2wd', 
			'campaign' : '2012_cadillac_escalade_2wd_mobile', 
			'group' : '',
			'startDate' : '01/04/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : '2012_cadillac_cts_sport',
			'franchises' : 'Cadillac', 
			'url' : 'AboutSpecials?p=2012_cadillac_cts_sport', 
			'campaign' : '2012_cadillac_cts_sport_mobile', 
			'group' : '',
			'startDate' : '01/04/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : '2012_cadillac_srx_crossover',
			'franchises' : 'Cadillac', 
			'url' : 'AboutSpecials?p=2012_cadillac_srx_crossover', 
			'campaign' : '2012_cadillac_srx_crossover_mobile', 
			'group' : '',
			'startDate' : '01/04/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : '2012_chevy_appreciation',
			'franchises' : 'Chevrolet', 
			'url' : 'AboutSpecials?p=2012_chevy_appreciation', 
			'campaign' : '2012_chevy_appreciation_mobile', 
			'group' : '',
			'startDate' : '01/03/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : 'cuv_cpo_jan2012_form',
			'franchises' : ['Chevrolet','Buick','GMC'],
			'url' : 'AboutSpecials?p=cuv_cpo_jan2012_form', 
			'campaign' : 'cuv_cpo_jan2012_form_mobile', 
			'group' : '',
			'startDate' : '01/24/2012',
			'endDate' : ''
		},{
			'name' : 'cadillac_cpocts_jan2012_form',
			'franchises' : 'Cadillac', 
			'url' : 'AboutSpecials?p=cadillac_cpocts_jan2012_form', 
			'campaign' : 'cadillac_cpocts_jan2012_form_mobile', 
			'group' : '',
			'startDate' : '01/24/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : 'cadillac_cpoesc_jan2012_form',
			'franchises' : 'Cadillac', 
			'url' : 'AboutSpecials?p=cadillac_cpoesc_jan2012_form', 
			'campaign' : 'cadillac_cpoesc_jan2012_form_mobile', 
			'group' : '',
			'startDate' : '01/24/2012',
			'endDate' : '02/29/2012'
		},{
			'name' : 'chevy_d2cmulti_jan2012',
			'franchises' : 'Chevrolet', 
			'url' : 'AboutSpecials?p=chevy_d2cmulti_jan2012', 
			'campaign' : 'chevy_d2cmulti_jan2012_mobile', 
			'group' : '',
			'startDate' : '02/07/2012',
			'endDate' : ''
		}];
		
		
	return {
		getPromo:function(name) {
			for (var i = _currentPromos.length; i--;) {
				if (_currentPromos[i].name === name) {
					return _currentPromos[i];
				}
			}
			return {};
		},
                getCurrentPromos:function() {
                        return _currentPromos;
        }
		
	};
}();


