Step 1: Show the default event.
Step 2: Link The Message Handler
			<message name="getEntries" />
			<message-listener message="getEntries" />
Step 3: Add the Event Types
		<event-type name="hasRSSLayout">
			<after>
				<views>
					<include name="main" template="rss.cfm" />
				</views>
			</after>
		</event-type> 
		<event-type name="hasStandardLayout">
			<after>
				<views>
					<include name="contentRight" template="categories.cfm" />
					<include name="contentRight" template="bookmarks.cfm" append="true" />
					<include name="main" template="mainLayout.cfm" />
				</views>
			</after>
		</event-type>
	and decorate the view pages with the hasStandardLayout event type
	
Step 4: Log in and show the categories admin CRUD. Show it not working. Then add scaffold tag and watch it work magically.
	<scaffold object="categories" />	
