/*
 * Ext JS Library 2.0
 * Copyright(c) 2006-2007, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://www.extjs.com/license
 */

// some data used in the examples
Ext.namespace('Ext.exampledata');

Ext.exampledata.earnings = [
        ['-5k', 'less than £5,000'],
        ['5k-7k', '£5,000-£7,000'],
        ['7k-40k', '£7,000-£40,000'],
        ['40k+', 'over £40,000']
    ];

	Ext.exampledata.overreasons = [
        ['emergency tax', 'emergency tax'],
        ['stopping work', 'stopping work'],
        ['arriving/leaving UK', 'arriving/leaving UK'],
        ['just want to check', 'just want to check']
    ];
	
	Ext.exampledata.overpaid = [
        ['after5-4-07', 'after 5th April 09'],
        ['before5-4-07', 'before 5th April 09'],
        ['more than a year', 'more than a year']
    ];
	
	Ext.exampledata.overcodes = [
        ['BR', 'BR'],
        ['M1', 'Month1 / M1'],
        ['W1', 'Week1 / W1'],
		['X', 'X'],
		['L', 'L'],
		['Other', 'Other']
    ];
	
	Ext.exampledata.cisyears = [
        ['lastyear', 'just last tax year'],
        ['more than one year', 'more than one year']
    ];
	
	Ext.exampledata.toolsbought = [
        ['tools', 'tools/equipment'],
        ['memberships', 'memberships'],
        ['other', 'other']
    ];
	
	Ext.exampledata.toolsjob = [
        ['mechanic', 'mechanic'],
        ['NHS', 'NHS professional'],
        ['other', 'other']
    ];
	
	Ext.exampledata.toolstart = [
        ['since05-2007', 'since 5th April 2009'],
        ['before05-2007', 'before 5th April 2009']
    ];
	
	Ext.exampledata.losstold = [
        ['Yes', 'Yes'],
        ['No', 'No'],
        ['accountant', 'My accountant has']
    ];
	
	Ext.exampledata.status = [
        ['employee', 'employee'],
        ['self-employed', 'self-employed'],
        ['student', 'student'],
		['not working', 'not working'],
		['2 or more', '2 or more']
    ];
	
	Ext.exampledata.income = [
        ['less5k', 'less than £5,000'],
        ['5k-10k', '£5,0000-£10,000'],
        ['10-15k', '£10,000-£15,000'],
		['15k-25k', '£15,000-£25,000'],
		['25k-35k', '£25,000-£35,000'],
		['35k+', 'over £35,000']
    ];
	
	Ext.exampledata.tax = [
        ['PAYE', 'PAYE'],
        ['return', 'on a tax return'],
        ['both', 'both'],
		['unsure', 'not sure']
    ];
	
	Ext.exampledata.download = [
        ['download', 'by download'],
        ['post', 'by post']
    ];
