//========================================================================================
// TITLES FOR THE DROP DOWN MENU
// Editable Section !!!
//========================================================================================
function getMenus()
{

	if (category == "home")
	{	
		// COMPANY drop down menu
		menus.companyMenu =
		makeMenu( 
		    ['Overview', 'company\/index.asp'],
			['Careers', 'company\/career.asp']
		  )
		menus.companyMenu.url = 'company\/index.asp'
		
	
		// PRODUCT drop down menu
		 menus.productsMenu =
		makeMenu( 
		    ['Overview', 'product\/index.asp'],
			['CentreSuite', 'product\/centre_suite.asp'],
			['Pathway Net', 'product\/pathway_net.asp'],
		    ['PVS Net', 'product\/pvs_net.asp'],
			['Program Solutions', 'product\/custom_solution.asp']
		  )
		menus.productsMenu.url = '\product\/index.asp'
	}
	
	else
	{
		// COMPANY drop down menu
		menus.companyMenu =
		makeMenu( 
		    ['Overview', '..\/company\/index.asp'],
			['Careers', '..\/company\/career.asp']
		  )
		menus.companyMenu.url = '..\/company\/index.asp'
		
	
		// PRODUCT drop down menu
		 menus.productsMenu =
		makeMenu( 
		    ['Overview', '..\/product\/index.asp'],
			['CentreSuite', '..\/product\/centre_suite.asp'],
			['Pathway Net', '..\/product\/pathway_net.asp'],
		    ['PVS Net', '..\/product\/pvs_net.asp'],
			['Program Solutions', '..\/product\/custom_solution.asp']
		  )
		menus.productsMenu.url = '..\/product\/index.asp'
	}

}

// -->
