package com.guru.section 
{
	import com.guru.event.CusEvent;
	/**
	 * ...
	 * @author Eddy Lee
	 */
	public class SectionEvent extends CusEvent
	{
		public static var DEACTIVE_START:String = "onDeActiveStart";
		public static var DEACTIVE_DONE:String = "onDeActiveDone";
		public static var ACTIVE_START:String = "onActiveStart";
		public static var ACTIVE_DONE:String = "onActiveDone";
		
		public function SectionEvent(pType_str:String) 
		{
			super(pType_str);
		}
		
	}

}