/*Return MLC based on document name */
/* THIS IS FOR GAQ ONLY! */
function mlc_overide(){
    var thisMLC = "";
    
    var curSearchPageItems = getParameter('start');
    
    if(curSearchPageItems != ""){
        thisMLC = "/en/search/page_" + ((parseInt(curSearchPageItems) / 10) + 1) + ";/chrysler/en/search/page_" + ((parseInt(curSearchPageItems) / 10) + 1);
    }else{
        thisMLC = "/en/search;/chrysler/en/search";
    }
    return thisMLC;
}

/*Return PN based on document name */
/* THIS IS FOR GAQ ONLY! */

function pn_overide(){
    var thisPN = "";

    var curSearchTerm = getParameter('q');
    
    if(curSearchTerm != ""){
        thisPN = "/" + curSearchTerm;
    }else{
        thisPN = "/index";
    }
     
    return thisPN;
}