﻿//Script para la banda inferior de Territorio Mascota
//
//by Luis Miguel Herrero(c) 2010
//

$(document).ready(function () {
    $("#CierraFooter").click(function() {
        $("#Footer").hide("slow");
        $.cookie('TerritorioBand', 'Cerrado', { expires: 1, path: '/' });                
    });
    var banda = $.cookie('TerritorioBand');
    if (banda!=null){
        if (banda=="OK"){
            $("#Footer").show();
        }
        if (banda=="Cerrado"){
            $("#Footer").hide();
        }
    }else{
        $.cookie('TerritorioBand', 'OK', { expires: 1, path: '/'});
        $("#Footer").show("slow");
    }
});