$(document).ready(function(){
    // eliminar frames (www.cacocu.tv)
    if (!top.location.match(/premios-web/) && top!= self)
        top.location=self.document.location;
    else{
        var dominios = [
            "www.cacocu.com",
            "cacocu.com",
            "cacocu.es",
            "www.cacocu.info",
            "cacocu.info",
            "www.cacocu.net",
            "cacocu.net",
            "www.cacocu.org",
            "cacocu.org",
        ];

        var redirigirA = "http://www.cacocu.es";

        for (var d in dominios){
            if (window.location.hostname == dominios[d]){
                anterior = window.location.href;
                nueva = anterior.replace("http://" + dominios[d], redirigirA);
                window.location.replace(nueva);
            }
        }

    }
    
});
