var Indicator = Class.create();
Indicator.prototype = {
    initialize: function(id) {
        this.element = $(id);
    },

    show: function() {
        this.element.style.visibility = 'visible';
    },
    
    hide: function() {
        this.element.style.visibility = 'hidden';
    }
};