Spinner = Class.create();

Spinner.prototype = {
	initialize: function(id) {
		this.id = id;
	},
	
  show: function() {		
		$(this.id).style.visibility = "visible";
  },

  hide: function() {
    $(this.id).style.visibility = "hidden";
  }

}

