Take the community feedback survey now.
                AI OnAI Off
            
        Take the community feedback survey now.
 
                
	public class Filter
	{
		public static void PagTypeFilter(object sender, EPiServer.Filters.FilterEventArgs e)
		{
			for(int i = 0; i < e.Pages.Count; i++)
			{
				if(!e.Pages[i].PageTypeName.StartsWith("Area"))
					continue;
				e.Pages.RemoveAt(i);
				i--;
			}
		}
	}
/HAXEN
                        