var Website = {
	
	init: function(){
		this.welcome();
		this.container();
	},
	
	welcome: function(){
		$('#welcome').delay(800)
					 .fadeIn(1000)
					 .click(function(){
						 Website.details();
					 });
	},
	
	details: function(){
		$('#welcome').fadeOut(800);
		$('#container').delay(500)
					   .fadeIn(1000);
	},
	
	container: function(){
		$('#container').css('height', $(window).height());
	}
	
}

$(function(){
	
	Website.init();
	
});
