		if (GMCERTIFIED == null) {
			GMCERTIFIED = new Object();
		}
		GMCERTIFIED.WHATIS = new Object(); 


		GMCERTIFIED.WHATIS.tabsArray = new Array();
		GMCERTIFIED.WHATIS.tabsArray[0] = "Built-In Value";
		GMCERTIFIED.WHATIS.tabsArray[1] = "Warranty";
 		GMCERTIFIED.WHATIS.tabsArray[2] = "117-Point Inspection";
 		GMCERTIFIED.WHATIS.tabsArray[3] = "Vehicle History Report";
 		GMCERTIFIED.WHATIS.tabsArray[4] = "3-Day/150-Mile Guarantee";
 		GMCERTIFIED.WHATIS.tabsArray[5] = "Videos";
 		GMCERTIFIED.WHATIS.tabsArray[6] = "Standard CPO Maintenance";
 		GMCERTIFIED.WHATIS.tabsArray[7] = "OnStar Directions and Connections";

        GMCERTIFIED.WHATIS.tabsURLArray = new Array();
		GMCERTIFIED.WHATIS.tabsURLArray[0] = "built-in-value";
		GMCERTIFIED.WHATIS.tabsURLArray[1] = "used-car-warranty";
 		GMCERTIFIED.WHATIS.tabsURLArray[2] = "used-car-inspection";
 		GMCERTIFIED.WHATIS.tabsURLArray[3] = "vehicle-history-reports";
 		GMCERTIFIED.WHATIS.tabsURLArray[4] = "3-day-150-mile-guarantee";
 		GMCERTIFIED.WHATIS.tabsURLArray[5] = "videos";
 		GMCERTIFIED.WHATIS.tabsURLArray[6] = "used-car-maintenance-plan";
 		GMCERTIFIED.WHATIS.tabsURLArray[7] = "onstar-directions-and-connections";
 		
 		GMCERTIFIED.WHATIS.showTab = function showTab(stabId, baseHREF)
 		{
 			var tabsArray = GMCERTIFIED.WHATIS.tabsArray;
            var tabsURLArray = GMCERTIFIED.WHATIS.tabsURLArray;
 		
 			var tabId = -1;
 			if (isInteger(stabId) == true) {
 			  tabId = parseInt(stabId);
 			}
 		
 	 		if( tabId > 7 || tabId < 0){
				tabId = -1;
 	 		}
			if (tabId >= 0) {
                if(tabId==7){
                    $("#headerText").html("Onstar Directions & Connections&reg");
                }else if(tabId==6){
                    $("#headerText").html("2-Year/30,000-Mile Standard CPO<br/> Maintenance Plan");
                }else if(tabId==5){
                    $("#headerText").html("Videos");
                }else if(tabId==4){
                    $("#headerText").html("3-Day/150-Mile Customer<br/> Satisfaction Guarantee");
                }else if(tabId==3){
                    $("#headerText").html("Vehicle History Report");
                }else if(tabId==2){
                    $("#headerText").html("172-Point Vehicle Inspection and<br/> Reconditioning Process");
                }else if(tabId==1){
                    $("#headerText").html("Two Auto Warranties");
                }else if(tabId==0){
                    $("#headerText").html("Built-In Value");
                }else{
				    $("#headerText").html(tabsArray[tabId]);
                }
			} else {
				$("#headerText").html("Certified Advantage");
			}	
 			for( var i=0; i < tabsArray.length; i++){
 				$("#whatis_tabs_"+i).hide();
 				var link = baseHREF + "/" + tabsURLArray[i];
 				var html = "<a href='" + link + "'>" + tabsArray[i] + "</a>"
 				$("#whatis_tabs_li_"+i).html(html);
 			}
			if( tabId == -1) {
				$("#whatis_tabs_x").show();
			} else {
				$("#whatis_tabs_x").hide();
 				$("#whatis_tabs_"+tabId).show();
 				$("#whatis_tabs_li_"+tabId).html('<strong>'+tabsArray[tabId]+'</strong>');
			}
 		}
 		
 		// Implement Divisional pathing logic for Inspection flash module
 		GMCERTIFIED.WHATIS.INSPECTION = new Object(); 		
 		GMCERTIFIED.WHATIS.INSPECTION.initflashmodule = function initflashmodule() {
 			
	    	var fm = "/themes/default/flash/172_point_inspection/chevy/Malibu_172_616_011811.swf";
	    	
	    	if (GMCERTIFIED.REFERRER.isGMC()) {
	    	   fm = "/themes/default/flash/172_point_inspection/gmc/Sierra_172_616_041411.swf";
	    	} else if (GMCERTIFIED.REFERRER.isBuick()) {
	    	   fm = "/themes/default/flash/172_point_inspection/buick/Buick_172_616_041411.swf";			        
	    	}
	    	
	    	var fohtml = "<object width='615' height='350' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' ";
	    		fohtml = fohtml + "codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' id='gmcuv_780x445_011' align='middle'>";
	    	fohtml = fohtml + "<param name='allowScriptAccess' value='never' />";
	    	fohtml = fohtml + "<param name='movie' value='" + fm + "'/>";
	    	fohtml = fohtml + "<param name='bgcolor' value='#ffffff'/>";
	    	fohtml = fohtml + "<embed width='615' height='350'  src='" + fm;
	    	    fohtml = fohtml + "' quality='high' bgcolor='#ffffff' name='gmcuv_780x445_011' align='middle' allowScriptAccess='never' ";
	    	    fohtml = fohtml + "type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/>";
	    	fohtml = fohtml + "</object>";
	    	
	    	document.getElementById("inspect-flash-mod").innerHTML = fohtml;
	    	
 		}

