


var Controller = Class.create( EventDispatcher, {
	
	application : undefined,
	event_dispatcher : undefined,	
	
	initialize : function( application ){
		
		
		this.application = application;
		this.event_dispatcher = new EventDispatcher();
		
	}
	
		
} );