
// Create Behavior class
function Behavior(HookType, HookName, EventName, FunctionName)
{
	/**** Properties ****/
	this.HookType = HookType;
	this.HookName = HookName;
	this.EventName = EventName;
	this.FunctionName = FunctionName;
	
	
	/**** Methods ****/
	

	
	
	/****  Implementation ****/
		

}