var lists = new Array();

// ============= First set of text and values
// ======== 0 =========
lists['00'] = new Array();
lists['00'][0] = new Array(
	''
);
lists['00'][1] = new Array(
	''
);
lists['Arts & Entertainment']    = new Array();
lists['Arts & Entertainment'][0] = new Array(
	'Architecture',
	'Books',
	'Design',
	'Entertainment',
	'Games',
	'Performing Arts',
	'Photography',
	'Poetry',
	'Science Fiction'
);
lists['Arts & Entertainment'][1] = new Array(
	'Architecture',
	'Books',
	'Design',
	'Entertainment',
	'Games',
	'Performing Arts',
	'Photography',
	'Poetry',
	'Science Fiction'
);

// ======== 2 =========
lists['Audio Blogs'] = new Array();
lists['Audio Blogs'][0] = new Array(
	''
);
lists['Audio Blogs'][1] = new Array(
	''
);

// ======== 3 =========
lists['Business'] = new Array();
lists['Business'][0] = new Array(
	'Careers',
	'Finance',
	'Investing',
	'Management',
	'Marketing'
);
lists['Business'][1] = new Array(
	'Careers',
	'Finance',
	'Investing',
	'Management',
	'Marketing'
);

// ======== 4 =========
lists['Comedy'] = new Array();
lists['Comedy'][0] = new Array(
	''
);
lists['Comedy'][1] = new Array(
	''
);

// ======== 5 =========
lists['Education'] = new Array();
lists['Education'][0] = new Array(
	'K-12',
	'Higher Education'
);
lists['Education'][1] = new Array(
	'K-12',
	'Higher Education'
);

// ======== 6 =========
lists['Food'] = new Array();
lists['Food'][0] = new Array(
	''
);
lists['Food'][1] = new Array(
	''
);

// ======== 7 =========
lists['Health'] = new Array();
lists['Health'][0] = new Array(
	'Diet & Nutrition',
	'Fitness',
	'Relationships',
	'Self-Help',
	'Sexuality'
);
lists['Health'][1] = new Array(
	'Diet & Nutrition',
	'Fitness',
	'Relationships',
	'Self-Help',
	'Sexuality'
);

// ======== 8 =========
lists['International'] = new Array();
lists['International'][0] = new Array(
	'Australian',
	'Belgian',
	'Brazilian',
	'Canadian',
	'Chinese',
	'Dutch',
	'French',
	'German',
	'Hebrew',
	'Italian',



	'Japanese',
	'Norwegian',
	'Polish',
	'Portuguese',
	'Spanish',
	'Swedish'
);
lists['International'][1] = new Array(
	'Australian',
	'Belgian',
	'Brazilian',
	'Canadian',
	'Chinese',
	'Dutch',
	'French',
	'German',
	'Hebrew',
	'Italian',
	'Japanese',
	'Norwegian',
	'Polish',
	'Portuguese',
	'Spanish',
	'Swedish'
);

// ======== 9 =========
lists['Movies & Television'] = new Array();
lists['Movies & Television'][0] = new Array(
	''
);
lists['Movies & Television'][1] = new Array(
	''
);

// ======== 10 =========
lists['Music'] = new Array();
lists['Music'][0] = new Array(
	''
);
lists['Music'][1] = new Array(
	''
);

// ======== 11 =========
lists['News'] = new Array();
lists['News'][0] = new Array(
	''
);
lists['News'][1] = new Array(
	''
);

// ======== 12 =========
lists['Politics'] = new Array();
lists['Politics'][0] = new Array(
	''
);
lists['Politics'][1] = new Array(
	''
);

// ======== 13 =========
lists['Public Radio'] = new Array();
lists['Public Radio'][0] = new Array(
	''
);
lists['Public Radio'][1] = new Array(
	''
);

// ======== 14 =========
lists['Religion & Spirituality'] = new Array();
lists['Religion & Spirituality'][0] = new Array(
	'Buddhism',
	'Christianity',
	'Islam',
	'Judaism',
	'New Age',
	'Philosophy',
	'Spirituality'
);
lists['Religion & Spirituality'][1] = new Array(
	'Buddhism',
	'Christianity',
	'Islam',
	'Judaism',
	'New Age',
	'Philosophy',
	'Spirituality'
);

// ======== 15 =========
lists['Science'] = new Array();
lists['Science'][0] = new Array(
	''
);
lists['Science'][1] = new Array(
	''
);

// ======== 16 =========
lists['Sports'] = new Array();
lists['Sports'][0] = new Array(
	''
);
lists['Sports'][1] = new Array(
	''
);

// ======== 17 =========
lists['Talk Radio'] = new Array();
lists['Talk Radio'][0] = new Array(
	''
);
lists['Talk Radio'][1] = new Array(
	''
);

// ======== 18 =========
lists['Technology'] = new Array();
lists['Technology'][0] = new Array(
	'Computers',
	'Developers',
	'Gadgets',
	'Information Technology',
	'News',
	'Operating Systems',
	'Podcasting',
	'Smart Phones',
	'Text/Speech'
);
lists['Technology'][1] = new Array(
	'Computers',
	'Developers',
	'Gadgets',
	'Information Technology',
	'News',
	'Operating Systems',
	'Podcasting',
	'Smart Phones',
	'Text/Speech'
);
// ======== 19 =========
lists['Travel'] = new Array();
lists['Travel'][0] = new Array(
	''
);
lists['Travel'][1] = new Array(
	''
);

function changeList( box ) {
	list = lists[box.options[box.selectedIndex].value];
	emptyList( box.form.slave );
	fillList( box.form.slave, list );
}
function emptyList( box ) {
	while ( box.options.length ) box.options[0] = null;
}
function fillList( box, arr ) {
	for ( i = 0; i < arr[0].length; i++ ) {
		option = new Option( arr[0][i], arr[1][i] );
		box.options[box.length] = option;
	}
	box.selectedIndex=0;
}