/*
startMenu(  Menu Number = An identifying number for the menu,
            Menu Width = The width of the menu in pixels.
                        If set to null the menu will "shrink to fit". 
)

menuItem()
Writes the HTML for a menu item. The parameters (in order) are:

  Menu Item text          = The text displayed in the menu item 
  Menu Number             = The ID of the menu triggered by this label 
                            If set to null, no submenu is displayed 
  Menu Item width         = The width in pixels of the menu item, or null 
  Menu Item "on" colour   = The colour the menu item turns when the mouse is over it 
  Menu Item "off" colour  = The colour of the menu item 
  URL                     = The address of the page the menu heading links to 
  Alignment               = can be 'left' or 'right'. 
  
*/
startMenu( 3, null );
  Img_menuItem( null, 'images_new/subnav_management_over.gif', 'images_new/subnav_management_out.gif', base + '?page=management' );
  Img_menuItem( null, 'images_new/subnav_letting_over.gif', 'images_new/subnav_letting_out.gif', base + '?page=lettings' );
endMenu();