/////////////////////////////////////////////////////////////////////////////////////
// nasza-armia specific functions
/////////////////////////////////////////////////////////////////////////////////////

Element.extend({
	toogle: function(){
		this.style['display'] = (this.style['display'] == 'none' ? 'block' : 'none');
		return this;
	},
	show: function(){
		this.style['display'] = 'block';
		return this;
	},
	hide: function(){
		this.style['display'] = 'none';
		return this;
	}
});
