urlImg = "/im/tit_logo_global.gif";

rules_portada_global = {
    evento : function() {
        $("#ed_nacional").click(rules_portada_global.ejecutar_nacional);
        $("#ed_global").click(rules_portada_global.ejecutar_global);
    },
    ejecutar_nacional : function() {
            borrarGlobalCookie();
            escribirGlobalCookie("0");
            location.href="/";
            return false;
    },
    ejecutar_global: function() {
            borrarGlobalCookie();
            escribirGlobalCookie(1);
            return false;
    },
    ir: function() {
            location.href="/";
            return false;
    }
}
$(document).ready(rules_portada_global.evento);

function borrarGlobalCookie() {
    document.cookie="elPaisGlobal=1; PATH=/; DOMAIN=.elpais.com; expires= Thu, 01-Jan-1970 00:00:01 GMT";
}

function leerCookie(){
    var URL =   location.search;
    var encontrada = URL.search("v=1");

    if (encontrada!=1){
        nombre="elPaisGlobal";
        if (document.cookie.indexOf( nombre )!= -1){
            a = document.cookie.substring(document.cookie.indexOf( nombre + '=') + nombre.length + 1,document.cookie.length);
            if(a.indexOf(';') != -1)
                a = a.substring(0,a.indexOf(';'))
            if(a==0)
                window.location.href="/";
        }else{
            var html = $.ajax({url: "../geoIp.php?", async: false}).responseText;
            if(html!=0)
                window.location.href="/";
        }
    }
}
leerCookie();

function cambio(){
    document.getElementById("cambiar").className="cambio-inner abierto";
}
function cambio2(){
     document.getElementById("cambiar").className="cambio-inner";
}
