//hbx custom JS file

var _lp=location.pathname;
var _i1=_lp.lastIndexOf('.'),_i2=_lp.indexOf('-');
var _ext=_lp.substring(_i1,_lp.length);
var _pre=_lp.substring(1,_i2+1);

if(_lp=="/"){
    hbx.pn="home";
    hbx.mlc="/";
}else if(_i1>=0&&_ext==".html"){
    hbx.pn="PUT+PAGE+NAME+HERE";
    hbx.mlc="CONTENT+CATEGORY";
    hbx.pndef="file";
}else if(_i2>=0&&_ext==".aspx"&&(_pre=="c-"||_pre=="p-"||_pre=="pc-")){
    var _i3=_lp.indexOf('-',_i2+1);
    if(_i3>=0){
        hbx.mlc="/products" + _lp.substring(0,_i3);
        var _p = _lp.substring(_i3+1,_lp.length);
        hbx.pn=_p.split("-").join(" ");
    }
}
