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\.uol/) && !oLink.href.match(/\/\/de\.uol/) ) {
			oLink.href = 'http://click.uol.com.br/?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://click.uol.com.br/?rf='+ ofertasRef + '&u=' + oLink.href;
		}
	}
}*/
CLICK.setCounter = function(ref){
	var ofertasRef = 'shopuol-ofertas';
	
	$("#ofertas-home a, #produto-destaque div.produto-detalhe-home a").each(function(){
			if(!this.href.match(/click\.uol/) && !this.href.match(/\/\/de\.uol/)){
				this.href = 'http://click.uol.com.br/?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://click.uol.com.br/?rf='+ ref + '&u=' + oLink.href;
		}
	}
}
*/