// 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 = [
	['About Us', 'about_us.htm', null,
		['About US','about_us.htm'],
		['Music Inc.', '/music-inc.htm'],
		['Home', 'http://www.coastrecording.com'] // there must be no comma after the last element
  ],
		// 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'
		['New Equipment','/closeout.htm',null, 
			['Close Outs', '/closeout.htm']
    ],
    
    ['Pre-owned Equipment','/Used_Equipment.htm', null,
			['Rack Equipment','/Used_Equipment.htm' ],
			['Microphones','/Used_Mics.htm']
    ],
    ['Service and Repair','/Service.htm',null ],
    ['Props', '/PropWeb/index.htm',null ],
    ['Line Card', '/linecard.htm' ,null],
    
    ['Internet Sales', '/store/catalog/index.php',null, 
			['Web Store','/store/catalog/index.php' ],
			['Ebay Store','http://stores.ebay.com/Coast-Recording-Equipment-Supply'],
	 	  ['Auction Info','/Auction_Info.htm']
		]
     
    ];
    
		



