//========================================================================================
// TITLES FOR THE DROP DOWN MENU
// Editable Section !!!
//========================================================================================
function getMenus()
{
// ABOUT drop down menu
menus.aboutMenu =
makeMenu( 
	['About', '../about\/index.html'],
    ['Customization', '../about\/customization.html'],
	['Innovation', '../about\/innovation.html'],
	['Materials', '../about\/materials.html'],
	['Clients', '../about\/clients.html'],
	['Quotes & Testimonials', '../about\/quotes_testimonials.html'],
	['News & Events', '../about\/news_events.html']
  )
menus.aboutMenu.url = '../about\/index.html'


// GUITARS MODELS drop down menu
 menus.guitarsModelMenu =
makeMenu( 
	['Guitars + Models', '../guitar_model\/index.html'],
    ['Used Inventory', '../guitar_model\/used_inventory.html']
  )
menus.guitarsModelMenu.url = '../guitar_model\/index.html'


// GALLERY drop down menu
menus.galleryMenu =
makeMenu( 
	['Gallery 1', '../gallery\/index.html'],
	['Gallery 2', '../gallery\/gallery2.html'],
    ['Shop Tour', '../gallery\/shop_tour.html'],
    ['Rosettes', '../gallery\/rosettes.html']
  )
menus.galleryMenu.url = '../gallery\/index.html'

}

// -->