var msgs = {
	access: {
		toggle: function(type) {
		  this.visible(type) ? this.hide(type) : this.show(type)
		},
	
		visible: function(type) {
		  return Element.visible('access')
		},
	
		show: function(type) {
		  visible = this.visible(type)
	
		  new Effect.BlindDown('access', {duration: 0.5})
	
		  return visible
		},
	
		hide: function(type) {
		  visible = this.visible(type)
		  
		  new Effect.BlindUp('access', {duration: 0.5})
	
		  return visible
		}
	},
	message: {
		toggle: function() {
		  this.visible() ? this.hide() : this.show()
		},
	
		visible: function() {
		  return Element.visible('message')
		},
	
		show: function() {
		  visible = this.visible()
	
		  new Effect.BlindDown('message', {duration: 0.5})
	
		  return visible
		},
	
		hide: function() {
		  visible = this.visible()
		  
		  new Effect.BlindUp('message', {duration: 0.5})
	
		  return visible
		}
	}
}