  
/**
* Redirects any external link to a local page and makes it open in a new window
**/
//updated
        $(document).ready(function() {
        	var domains = ['www.kaikubenecol.com', 'kaikubenecol.com', 'www.kaikubenecol.net', 'kaikubenecol.net', 'www.kaikubenecol.org', 'kaikubenecol.org', 'www.kaikubenecol.es', 'kaikubenecol.es', 'www.kaikubenecol.eu', 'kaikubenecol.eu', 'benecol-recetas.kaikubenecol.com', 'benecol-promociones.kaikubenecol.com', 'benecol-21dias.kaikubenecol.com'];
        	$("a[href][id!='noreplace']")
            .filter(function() {
                //alert(this.hostname);
                //alert(jQuery.inArray(this.hostname, domains));
            		return (this.hostname != '' && jQuery.inArray(this.hostname, domains) == -1);
          }).attr('href',function() { 
                return this.href.replace(/(.*)$/, '/redirect?url=' + encodeURI(this.href)); })
            .each(function () {  
                $(this).attr('target','_blank');
          });
        });

