		if (GMCERTIFIED == null) {
			GMCERTIFIED = new Object();
		}
		GMCERTIFIED.OFFERS = new Object(); 


		GMCERTIFIED.OFFERS.tabsArray = new Array();
		GMCERTIFIED.OFFERS.tabsArray[0] = "OnStar<sup>&#174;</sup> Trial";
 		GMCERTIFIED.OFFERS.tabsArray[1] = "SiriusXM<sup>&trade;</sup> Radio Trial";
 		GMCERTIFIED.OFFERS.tabsArray[2] = "Don't Miss Out";
 		
        GMCERTIFIED.OFFERS.tabsURLArray = new Array();
		GMCERTIFIED.OFFERS.tabsURLArray[0] = "onstar";
 		GMCERTIFIED.OFFERS.tabsURLArray[1] = "sirius-xm-radio";
 		GMCERTIFIED.OFFERS.tabsURLArray[2] = "apr-specials";
 		
 		GMCERTIFIED.OFFERS.showTab = function showTab(stabId,baseHREF)
 		{
 			var tabsArray = GMCERTIFIED.OFFERS.tabsArray;
            var tabsURLArray = GMCERTIFIED.OFFERS.tabsURLArray;
 		
 			var tabId = -1;
 			if (isInteger(stabId) == true) {
 			  tabId = parseInt(stabId);
 			}
 		
 	 		if( tabId > 3 || tabId < 0){
				tabId = -1;
 	 		}
			if (tabId == 0) {
				$("#headerText").html("3-Month Trial of OnStar<sup>&#174;</sup> <br/>Directions &amp; Connections");
			} else if (tabId == 1) {
				$("#headerText").html("3-Month Trial of SiriusXM<sup>&trade;</sup> Satellite Radio");
			}else if (tabId == 2) {
				$("#headerText").html("Your Certified Pre-Owned dealer has lots of great financing options!");
			}
 			
			for( var i=0; i < tabsArray.length; i++){
 				$("#offers_tabs_"+i).hide();
 				var link = baseHREF + "/" + tabsURLArray[i];
 				var html = "<a href='" + link + "'>" + tabsArray[i] + "</a>"
 				$("#offers_tabs_li_"+i).html(html);
 			}

 			if( tabId == -1) {
				$("#offers_tabs_x").show();
			} else {
				$("#offers_tabs_x").hide();
 				$("#offers_tabs_"+tabId).show();
 				$("#offers_tabs_li_"+tabId).html('<strong>'+tabsArray[tabId]+'</strong>');
			}
 		}

