/**
 * onload initialise the app
 */

$(function(){
	
	// var applicationEventBus = {};
	
	var App = {
		
	    init: function() {
	  
	      	// window.AppRouter = new AppRouter( { eventBus : applicationEventBus } );
			
			this.show();
	    }, 
	
		/**
		 * Show everything
		 */
		show : function(){
			
			//console.log('App.show()');
			
			// show the site
			$('#container').animate({ opacity: 1 }, 500); 
		}
	}
	
	// Initialise the app
	App.init();

});


















