var ACCORDIAN_ABOUT = function()
{
    var panel = new Ext.Panel(
    {
        extraCls: 'iphone-accordion-interior',
        layout: 'accordion',
        defaults: 
		{
			bodyStyle: 'background: #FFF; padding: 20px 15px 20px 21px;',
			collapsible: false
		},
        layoutConfig:
        {
            titleCollapse: false,
            animate: true,
            activeOnTop: false,
            fill: false
        },
        items: [
        {
            title: 'Getting Started',
            html: '<p>Tap Near Me to use iPhone&rsquo;s built-in GPS or iPod touch&rsquo;s Wi-Fi triangulation capabili'+
				  'ty to quickly find hotspots near you. Tap Search to search for hotspots in a specific city or ZIP co'+
				  'de.</p><img src="/images/iphone_1_getting_started.jpg" alt="Getting started"/>'
				  
        }, 
        {
            title: 'Searching by City or ZIP Code',
            html: '<p>Tapping Search allows you to find free or pay-access hotspots in specific city or ZIP code.</p><i'+
				  'mg src="/images/iphone_2_searching_by_location.jpg" alt="Searching by location"/>'
        }, 
        {
            title: 'Viewing Search Results',
            html: '<p>When using the Near Me search feature, hotspots are presented in order by proximity and may be fi'+
				  'ltered by tapping the Filter button.</p><img src="/images/iphone_3_viewing_search_results.jpg" alt="'+
				  'Viewing search results"/>'
        }, 
        {
            title: 'Filter Search Results',
            html: '<p>Tap the Filter button above your results list to access filters to narrow your Near Me results li'+
				  'st. Tap done to see your new results list.</p><img src="/images/iphone_4_filtering_results.jpg" alt='+
				  '"Filtering results"/>'
        }, 
        {
            title: 'Dialing, Mapping & Saving Locations',
            html: '<p>While viewing a location&rsquo;s details, tap an address to open a map, tap a phone number to dia'+
				  'l that location (iPhone only), or tap Bookmark to save the location for offline viewing in Airplane '+
				  'Mode.</p><img src="/images/iphone_5_dial_map_save.jpg" alt="Dialing, mapping and saving"/>'
        }],
        renderTo: 'ext-iphone-accordian'
    });
};

Ext.onReady(ACCORDIAN_ABOUT);