$(document).ready(function(){
    if(PATH.domain!='localhost'){
        for(var i=0,cpo; cpo=document.getElementsByTagName('a')[i];i++){
            if(cpo.href != "" && cpo.href != "#" && !(cpo.href.indexOf('javascript:')!=-1)){
                if(PATH.controller!='carrinho'||PATH.controller!='usuarios') {
                    cpo.href=cpo.href.replace('http://','https://');
                }
            }
        }
    }
});
  
