/**
* Custom cross-brand metrics setup for 2006 Autoshow
*/

// Master list of account keys
var acct_keys = {
    // Account:        Autoshow     Brand        Global       
    'test chrysler' : 'DM540501BPFN;DM540501M7NM;DM540330JFCA;',
    'test dodge'    : 'DM540501BPFN;DM54050166AN;DM540330JFCA;',
    'test jeep'     : 'DM540501BPFN;DM540501PKMV;DM540330JFCA;',

    'prod chrysler' : 'DM5505020HBM;DM530925OHEB;DM540330MAFN;',
    'prod dodge'    : 'DM5505020HBM;DM530925P1NA;DM540330MAFN;',
    'prod jeep'     : 'DM5505020HBM;DM530925EHNZ;DM540330MAFN;'
};

// Figure out what environment we're in, and get the account 
// key for the env + brand
var host = ""+location.host;
var env = (host.indexOf('www.') == 0) ? 'prod' : 'test';
hbx.acct = acct_keys[env+' '+brand];
var loc = ""+location;
var news_page = (loc.indexOf('autoshow_news') != -1) ? true : false;
// MLC in order of Autoshow, Brand, Global
if(currentPage == "home"){
hbx.mlc = "/cdj/"+currentPage+";/autoshow;/"+brand+"/autoshow";
}else if(news_page){
  hbx.mlc = "/cdj/news/"+currentPage+";/autoshow/news/"+currentPage+";/"+brand+"/autoshow/news/"+currentPage;
}
else{
  hbx.mlc = "/cdj/"+currentPage+";/autoshow/"+currentPage+";/"+brand+"/autoshow/"+currentPage;
}

