// This was an extraordinary bugger to adapt from the original HTML, but the end product is an Include file without needing server side support for includes.
// The next step is to populate the entire thing with variables. Baby steps man, baby steps.

var headerVerticalMenu = Builder.node('div', { id: 'homeTopMenuList' },
	[
	 
		Builder.node('div', {id: 'homeTopMenu1', className: 'selectedTabVertical', onmouseover: 'gotoSlide(1); window.KryosSlideShow.stop();' },
			[ 
				Builder.node('h1', [ Builder.node('a', {href: tab1URL}, tab1Name)] ),
				Builder.node('h2', [ Builder.node('a', {href: tab1URL}, tab1Description)] ),
				Builder.node('a', {href: tab1URL}, [ Builder.node('img', {className: 'menuTabIcon', src: tab1Icon }) ])
			]
		),
		Builder.node('div', {id: 'homeTopMenu2', className: 'neutralTabVertical', onmouseover: 'gotoSlide(2); window.KryosSlideShow.stop();' },
			[ 
				Builder.node('h1', [ Builder.node('a', {href: tab2URL}, tab2Name)] ),
				Builder.node('h2', [ Builder.node('a', {href: tab2URL}, tab2Description)] ),
				Builder.node('a', {href: tab2URL}, [ Builder.node('img', {className: 'menuTabIcon', src: tab2Icon }) ])
			]
		),
		Builder.node('div', {id: 'homeTopMenu3', className: 'neutralTabVertical', onmouseover: 'gotoSlide(3); window.KryosSlideShow.stop();' },
			[ 
				Builder.node('h1', [ Builder.node('a', {href: tab3URL}, tab3Name)] ),
				Builder.node('h2', [ Builder.node('a', {href: tab3URL}, tab3Description)] ),
				Builder.node('a', {href: tab3URL}, [ Builder.node('img', {className: 'menuTabIcon', src: tab3Icon }) ])
			]
		),
		Builder.node('div', {id: 'homeTopMenu4', className: 'neutralTabVertical', onmouseover: 'gotoSlide(4); window.KryosSlideShow.stop();' },
			[ 
				Builder.node('h1', [ Builder.node('a', {href: tab4URL}, tab4Name)] ),
				Builder.node('h2', [ Builder.node('a', {href: tab4URL}, tab4Description)] ),
				Builder.node('a', {href: tab4URL}, [ Builder.node('img', {className: 'menuTabIcon', src: tab4Icon }) ])
			]
		),
		Builder.node('div', {id: 'homeTopMenu5', className: 'neutralTabVertical', onmouseover: 'gotoSlide(5); window.KryosSlideShow.stop();' },
			[ 
				Builder.node('h1', [ Builder.node('a', {href: tab5URL}, tab5Name)] ),
				Builder.node('h2', [ Builder.node('a', {href: tab5URL}, tab5Description)] ),
				Builder.node('a', {href: tab5URL}, [ Builder.node('img', {className: 'menuTabIcon', src: tab5Icon }) ])
				
			]
		)
	]
);

$('homeTopMenu').appendChild(headerVerticalMenu);