$(document).ready(function(){
    if(PATH.domain!='externo.reweb.com.br'&&PATH.domain!='localhost'&&PATH.domain!='192.168.0.2'){
        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://');
                }
            }
        }
    }
});
  
