﻿function animalLogic()
{
    this.animal = null;
}

animalLogic.prototype.setAnimal = function(animal)
{
    alert(animal);
    this.animal = animal;
    
    // can we set a cookie in JS and consume it in PHP??
}

animalLogic.prototype.showAll = function()
{

}