//tracking code population

if (document.location.href.indexOf('newcorvette_inv.html') > -1){
        //this is the 'build' page.. we need to redirect to the corvette inventory page
        document.location.href='http://www.bobstall.com/VehicleSearchResults?search=new&maxYear=2010&make=Chevrolet&modelId=3153';
}

if (document.location.href.indexOf('browse_inventory.html') > -1){
//	if (document.referrer.indexOf('corvette') > -1 ){
		document.location.href='http://www.bobstall.com/VehicleSearchResults?search=new&maxYear=2010&make=Chevrolet&modelId=3153';
//	}
}

//fix to handle removing the '360 views' button from certain pages
var res = document.getElementsByTagName('A');
for (j=0; j < res.length; j++){
	//iterate, look for link item
	try{
		if (res[j].href.indexOf('corvette_360') > -1){
			res[j].innerHTML = '';
		}
	}catch(ex){

	}
}

