

var CustomEvent = Class.create( {
	
	initialize : function( type ){
		
		this.type = type;
		
	},
	
	type : undefined
	
} );