var Splash = {
	init: function(){
		this.cont = $('content');
		this.head = $('header');
		this.action();
	},
	
	action: function(){	
		if (Cookie.read('splashed') != 'true') {
			var thisb = this;
			new Element ('div', {
				'id': 'splash',
				'events': {
					'click': function(e){
						e = new Event(e).stop();
						this.fade('out');
						thisb.cont.setStyles({'height':'auto', 'overflow':'auto'});
						thisb.head.setStyles({'height':'auto', 'overflow':'auto'});
						Cookie.write('splashed', 'true');
						(function(){ this.dispose(); }).delay(300,this);
					}
				}
			}).set('html','<a class="replace inner" href="#">Rock Bottom World Tour - Blood Orphans - Sponsored by Little, Brown and Co.</a>').inject(this.cont,'bottom');
			
			this.cont.setStyles({'height':'1px','overflow':'hidden'});
			this.head.setStyles({'height':'1px','overflow':'hidden'});
		}
	}
};
