// 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', 'index.php', null],
		// this is how custom javascript code can be called from the item
		/* note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Unsupported Browsers', 'javascript:alert(\'hello world\')', null,
			['Internet Explorer 4.x'],
			['Netscape 4.x']
		],
		['Report test results', 'http://www.softcomplex.com/support.html'],
	],*/
	['Blog', 'http://www.bridgephotographystudio.blogspot.com/' , null],
    ['Weddings', null, null,
            ['Bridals', 'bridals.php', null],
            ['Engagements', 'engagements.php', null],
            ['Wedding Gallery', 'wedding.php', null],
    ],
	['Portraits', null, null,
        ['Children', 'children.php', null],
		['Couples', 'couples.php', null],
        ['Families', 'families.php', null],
        ['Holidays', 'holidays.php', null],
        ['Individuals', 'individuals.php', null],
        ['Maternity', 'maternity.php', null],
        ['Newborns', 'newborns.php', null],
	],
    ['Extras',null,null,
        ['Bound Books', 'books.php'],
        ['Designer Cards','cards.php',null],
    ],
    ['Prices', null, null,
        ['Session Prices', 'sessionPrices.php', null ],
        ['Wedding Prices', 'weddingPrices.php', null ],
    ],
    ['About us', null, null,
        ['Contact', 'contact.php', null],
        ['Photographer', 'photographer.php', null],
    ],
    ['Customers', 'login.php' , null]
];


