// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'http://www.funkypixel.co.za/index.html'],
		
	['Photography', 'Photography.htm', null,
		['Weddings',   'PhotographyWedding.htm'],
		['Family',    'PhotographyFamily.htm'],
		['Corporate', 'PhotographyCorporate.htm'],
	],
	['Photo Products', 'PhotoArt.htm', null,
		['Borders',          'PhotoArt_Borders.htm'],
		['Cards',            'PhotoArt_Cards.htm'],
		['Collages',         'PhotoArt_Collages.htm'],
		['Mouse Pads',       'PhotoArt_MousePad.htm'],
		['Photo Books',      'PhotoArt_Book.htm'],
		['Photo Editing',    'PhotoArt_Manipulation.htm'],
		['Photo Processing', 'PhotoArt_PostProcessing.htm']
	],
	['Web Design', 'WebDesign.htm', null,
		['Web Design Portfolio',  'WebDesignPortfolio.htm'],
	],
	['Graphic Design',   'GraphicDesign.htm', null,
		['Adverts',        'Design_Adverts.htm'],
		['Animated',       'Design_Animated.htm'],
		['Business Cards', 'Design_BusinessCards.htm'],
		['Logo Design',    'Design_Logo.htm'],
		['Poster Design',  'Design_Poster.htm'],
		['More..',         'GraphicDesignPortfolio.htm'],
	],
    ['Blog', 'http://funkypixel.wordpress.com', null,
	['Marianne & Daniel', 'http://funkypixel.wordpress.com/2010/03/09/marianne-daniel/'],
	['Shane & Mandy', 'http://funkypixel.wordpress.com/2010/01/11/shane-mandy/'],
	['Liebe & Cedric', 'http://funkypixel.wordpress.com/2009/12/23/liebe-cedric/'],
	['Leavelle & Roscoe', 'http://funkypixel.wordpress.com/2009/12/21/leavelle-roscoe/'],
	['Gerhardt & Leana', 'http://funkypixel.wordpress.com/2009/12/16/gerhardt-leana/'],
	['Fiona & Gunther', 'http://funkypixel.wordpress.com/2009/12/15/fiona-gunther/'],
	['Ezelle & Coenie', 'http://funkypixel.wordpress.com/2009/12/07/ezelle-coenie/'],
	['Brian & Lisa', 'http://funkypixel.wordpress.com/2009/11/30/brian-lisa/'],
	['Chris & Monique', 'http://funkypixel.wordpress.com/2009/11/22/chris-monique/'],
	['Sandy & Stephan', 'http://funkypixel.wordpress.com/2009/11/21/sandy-stephan/'],
	['Ian & Shareen', 'http://funkypixel.wordpress.com/2009/11/06/ian-shareen/'],
	['Marie & Jonathan', 'http://funkypixel.wordpress.com/2009/11/03/marie-jonathan/'],
	['Melissa & Schalk', 'http://funkypixel.wordpress.com/2009/11/02/melissa-schalk/'],
	['Terina & Altus', 'http://funkypixel.wordpress.com/2009/10/25/terina-altus/'],
	['Pierre & Lise', 'http://funkypixel.wordpress.com/2009/10/18/pierre-amp-lise/'],
	['Julie & Terence', 'http://funkypixel.wordpress.com/2009/10/04/julie-terence/'],
	['Zanzibar', 'http://funkypixel.wordpress.com/2009/10/01/zanzibar/'],
						                                                             ], 
    ['Pricing', null, null,
		['Design',                 'PriceListDesign.html'],
		['Photo Processing & Art', 'PriceListPhotoProcessingAndArt.html'],
		['Photography',            'PriceListPhotography.html']
    ],
	['Contact us', 'ContactUs.html']
];

