	// 0 = viewable text in menu item
	// 1 = url used in AJAX function to bring in main HTML content 
	// 2 = external url
	// 3 = key for loader array
	

main_menu_items = [
	["Home","home_IE6.html",0,1],
	["Schedule","schedule.html",0,2],
	["Listen Live",0,"http://radiocaroline.servemp3.com/",8],
	["Sky/Freesat","sky.html",0,0],
	["Relays","relays.html",0,0],
	["Caroline's History","history.html",0,0],
	["Ross Revenge","ross_revenge.html",0,6],
	["Support Group","support_group.html",0,0],
	["Web Shop",0,"http://rcsocietysales.co.uk/",0],
	["Innovations Shop",0,"http://www.radiocarolineinnovations.co.uk/",0],
	["Horizon Magazine",0,"http://www.horizonmagazine.co.uk/",0],
	["Returnees","php/get_returnees.php",0,8],
	["Top Fifteens","top15_page.html",0,3],
	["Presenter Profiles","profiles.html",0,4],
	["Presenter Blogs","php/get_blogs.php",0,0],
	["Caroline TV",0,"http://www.radiocarolinetv.co.uk/",0],
	["Advertising","advertising.html",0,0],
	["Contact Us","contact.html",0,0],
	["Links","links.html",0,0]
	];

sub_menu_items = [
	["Prizes & Competitions","prizes_competitions.html",0,5],
	["Publicity Material","publicity.html",0,0],
	["10 Years on Satellite","ten_years_on_satellite.html",0,0],
	["Mobile Listening","mobile_listening.html",0,0],
	["The Boat That Rocked","boat_that_rocked.html",0,0],
	["Breakfast Shows","breakfast_shows.html",0,7],
	["Caroline Film","caroline_film.html",0,0],
	["Queries, Contacts and Questions","queries_contacts_and_questions.html",0,0],
	["Newsline","newsline.html",0,0],
	["Skype","skype.html",0,0],
	["Ronan O'Rahilly","ronan.html",0,0],
	["45th Anniversary pictures","45th_anniversary_pictures.html",0,0],
	["Caroline Widget","widgets.html",0,0],
	["Pirates Exhibition on IOM","pirates_IOM_exhibition.html",0,0],
	["Bug Page","bug_page.html",0,0],
	["Obituaries","obituaries.html",0,0],
	["Daily Quiz","quiz.html",0,9]
	];

	// menuname = viewable text in menu item
	// secondItemURL = URL for second item to be loaded into page after main content
	// secondItemDiv = name of DIV into which second item should be loaded
	// css = when true we load external ccs. Its name is constructed from viewable text
	// js = when true we load external javascript. Its name is constructed from viewable text
	// jsfunc = a js function to execute. 'before' does this instead of loading AJAX content, 'after' fires function after main content is loaded 

loader = [
	{},	  	
	{menuname: "Home", secondItemURL:0, secondItemDiv:0, css:0, js:0, jsfunc:"load_home_page_extras('after')"},
	{menuname: "Schedule", secondItemURL:0, secondItemDiv:0, css:0, js:0, jsfunc:"switch_to_schedule_page('after')"},
	{menuname: "Top Fifteens", secondItemURL:"php/get_scheduled_top15s_public.php", secondItemDiv:"scheduled_top15s", externalURL:0, css:true, js:true, jsfunc:"show_tracker('after')"},
	{menuname: "Presenter Profiles", secondItemURL:0, secondItemDiv:0, css:0, js:0, jsfunc:"get_profile_page('before')"},
	{menuname: "Prizes & Competitions", secondItemURL:0, secondItemDiv:0, css:0, js:true, jsfunc:"get_ma_data('after')"},
	{menuname: "Ross Revenge", secondItemURL:0, secondItemDiv:0, css:true, js:true, jsfunc:0},
	{menuname: "Breakfast Shows", secondItemURL:0, secondItemDiv:0, css:true, js:0, jsfunc:0},
	{menuname: "Returnees", secondItemURL:0, secondItemDiv:0, css:0, js:0, jsfunc:"next_returnees('before')"},
	{menuname: "Quiz", secondItemURL:0, secondItemDiv:0, css:0, js:0, jsfunc:"init('after')"}
	];

