var CLICK = window.CLICK || {};
/*CLICK.setCounter = function(ref){
	var ofertasRef = 'shopuol-ofertas';
	if(!document.getElementById('produto-destaque') && !document.getElementById('ofertas-home')) return;
	var colLinks = [];
	if(document.getElementById('produto-destaque')){
		colLinks = document.getElementById('produto-destaque').getElementsByTagName('a');
	}
	if(document.getElementById('ofertas-home')){
		colOfertasHome = document.getElementById('ofertas-home').getElementsByTagName('a');
	}
	for(var i=0, oLink; oLink = colLinks[i]; i++){
		if(oLink.href && !oLink.href.match(/click\.mejorprecio/) && !oLink.href.match(/\/\/de\.uol/) ) {
			oLink.href = 'http://clicku.mejorprecio.com.ar/?rf='+ ref + '&u=' + oLink.href;
		}
	}
	for(var i=0, oLink; oLink = colOfertasHome[i]; i++){
		if(oLink.href && !oLink.href.match(/click\.uol/) && !oLink.href.match(/\/\/de\.uol/) ) {
			oLink.href = 'http://clicku.mejorprecio.com.ar/?rf='+ ofertasRef + '&u=' + oLink.href;
		}
	}
}*/

CLICK.setCounter = function(ref){
	var ofertasRef = 'shopar-ofertas';
	$("#ofertas-home a, #produto-destaque div.produto-detalhe-home a").each(function(){
        if(!this.href.match(/clicku\.mejorprecio/) && !this.href.match(/\/\/de\.mejorprecio/)){
            this.href = 'http://clicku.mejorprecio.com.ar/?rf='+ ofertasRef + '&u=' + this.href;
        }
    })
}

/* old version, for 'produto-destaque' only
CLICK.setCounter = function(ref){
	if(!document.getElementById('produto-destaque') && !document.getElementById('ofertas-home')) return;
	var colLinks = document.getElementById('produto-destaque').getElementsByTagName('a');
	for(var i=0, oLink; oLink = colLinks[i]; i++){
		if(oLink.href && !oLink.href.match(/click\.uol/)) {
			oLink.href = 'http://clicku.mejorprecio.com.ar/?rf='+ ref + '&u=' + oLink.href;
		}
	}
}
*/