			var menus;
			
			function onWindowLoad()
			{
				repositionLayers();
				return true;
			}

			function onWindowResize()
			{
				repositionLayers();
				return true;
			}

			function onMenuMouseOver(a_menuName, a_imageName, a_imageFile)
			{
				swapImage(a_imageName, '', a_imageFile, 1);
				SliderMenu.showMenu(a_menuName)
				return true;
			}

			function onMenuMouseOut(a_menuName)
			{
				swapImgRestore();
				SliderMenu.hideMenu(a_menuName)
				return true;
			}
			
			function initializeMenuLayers()
			{
				// Set the top left positions of all the menus

				var menus = [
					new SliderMenu("menu_selling_home", "down", 0, 28, 175, 200),
					new SliderMenu("menu_buying_home", "down", 172, 28, 300, 300),
				]
			}
