// 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 = [
	['Web Site', null, null,
		['Design','services.cfm'/*, {'tw':'_blank'}*/
		 
		],
	['Development','services.cfm'/*, {'tw':'_blank'}*/
		
		],
	['Programming','services.cfm'/*, {'tw':'_blank'}*/
			//['Stratagy <img src="/images/arrow.gif" height="8" width="8" border="0" alt="next level">', null, null, 
//				['requirements'],
//				['assessment'],
//				['demo presentation'],
//				['demo approval'],
//				['prototype'],
//				['launch'] // there must be no comma after the last element
//			],
//			['Programming <img src="/images/arrow.gif" height="8" width="8" border="0" alt="next level">', null, null,
//				['Development','Development.cfm'/*, {'tw':'_blank'}*/],
//				['Support', 'Support.cfm'/*, {'tw':'_blank'}*/],
//				
//			],
//				['Content Management <img src="/images/arrow.gif" height="8" width="8" border="0" alt="next level">', null, null,
//				['Development','Development.cfm'/*, {'tw':'_blank'}*/],
//				['Support', 'Support.cfm'/*, {'tw':'_blank'}*/],
//				
//			],
//				['Upgrade <img src="/images/arrow.gif" height="8" width="8" border="0" alt="next level">', null, null,
//				['Development','Development.cfm'/*, {'tw':'_blank'}*/],
//				['Support', 'Support.cfm'/*, {'tw':'_blank'}*/],
//				
//			],
//			['more <img src="/images/arrow.gif" height="8" width="8" border="0" alt="next level">', null, null,
//				['Demo I'],
//				['Demo I']
//			]
		],
		// 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'
		//<img src="/images/arrow.gif" height="8" width="8" border="0" alt="next level"> 
		['Storage ', 'javascript:alert(\'Please select the item to the right\')', null,
			['Web Hosting Options', 'services.cfm'],
				//['Domain Name', 'DomainNames.cfm']
		],
		['Domains', 'services.cfm'],
			['Advertising', 'services.cfm'],
	],
	['Database', null, null,
		// this is how item scope settings are defined
	['Design', 'DatabaseDesign.cfm', {'tw':'_top', 'tt':'Database Design  ', 'sb':'Test Status Bar Message'}],
		// this is how multiple item scope settings are defined
		['Programming', 'services.cfm', {'tw':'_top', 'tt':'Database Programming  ', 'sb':'Test Status Bar Message'}],
 
	],
	['Graphics', null, null,
		['Graphic Design', 'services.cfm'],
		['Logo Mark Development', 'services.cfm'], 
	],
['Multimedia', null, null,
		['Audio', 'services.cfm'],
		['Video', 'services.cfm'],
/*		['Inner HTML', '../demo3/index.html'],
		['All Together', '../demo4/index.html'],
		['Frames Targeting', '../demo5/index.html'],
		['Accessing IDs', '../demo6/index.html']*/
	]
	 
];

