
/***
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
TopMenu=new makeCM("TopMenu") //Making the menu object. Argument: menuname

TopMenu.frames = 0

//Menu properties
TopMenu.pxBetween=1
TopMenu.fromLeft=0
TopMenu.fromTop=30
TopMenu.rows=1
TopMenu.menuPlacement="left"

TopMenu.checkselect=1
TopMenu.offlineRoot="file:///C|/Inetpub/wwwroot/"
TopMenu.onlineRoot=""
TopMenu.resizeCheck=1
TopMenu.wait=500
TopMenu.fillImg="cm_fill.gif"
TopMenu.zIndex=0

TopMenu.openOnClick=0   // set to 1 if you want to click to drop the menu
TopMenu.closeOnClick=0

//Background bar properties
TopMenu.useBar=1
TopMenu.barWidth="100"
TopMenu.barHeight="menu"
TopMenu.barClass="clBar"
TopMenu.barX=0
TopMenu.barY=30
TopMenu.barBorderX=0
TopMenu.barBorderY=0
TopMenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
TopMenu.level[0]=new cm_makeLevel() //Add this for each new level
TopMenu.level[0].width=95
TopMenu.level[0].height=18
TopMenu.level[0].regClass="clLevel0"
TopMenu.level[0].overClass="clLevel0over"
TopMenu.level[0].borderX=1
TopMenu.level[0].borderY=1
TopMenu.level[0].borderClass="clLevel0border"
TopMenu.level[0].offsetX=0
TopMenu.level[0].offsetY=0
TopMenu.level[0].rows=0
TopMenu.level[0].arrow=0
/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout)
*************************************/

TopMenu.level[0].arrowWidth=0
TopMenu.level[0].arrowHeight=0
TopMenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
TopMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
TopMenu.level[1].width=TopMenu.level[0].width+60
TopMenu.level[1].height=18
TopMenu.level[1].regClass="clLevel1"
TopMenu.level[1].overClass="clLevel1over"
TopMenu.level[1].borderX=1
TopMenu.level[1].borderY=1
TopMenu.level[1].align="right"
TopMenu.level[1].offsetX=-(TopMenu.level[0].width-2)/2+20
TopMenu.level[1].offsetY=0
TopMenu.level[1].borderClass="clLevel1border"


//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to specify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
TopMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
TopMenu.level[2].width=150
TopMenu.level[2].height=20
TopMenu.level[2].offsetX=0
TopMenu.level[2].offsetY=0
TopMenu.level[2].regClass="clLevel2"
TopMenu.level[2].overClass="clLevel2over"
TopMenu.level[2].borderClass="clLevel2border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout)
*************************************/

//HOME
TopMenu.makeMenu('top0','','&nbsp;Home','/index.asp','')

//PHOTOGRAPHY
TopMenu.makeMenu('top2','','&nbsp;Photography','/photography/index.asp')
   TopMenu.makeMenu('sub21','top2','Astronomy related','/photography/index_astrophotography.asp')
      TopMenu.makeMenu('sub211','sub21','My first pictures...','/photography/astrophoto.asp')
      TopMenu.makeMenu('sub212','sub21','South Pacific Star Party','/photography/star_party2001.asp')
      TopMenu.makeMenu('sub213','sub21','Venus transit','/astronomy/venus_transit.asp')
 TopMenu.makeMenu('sub23','top2','Friends','/photography/friends.asp')
 TopMenu.makeMenu('sub24','top2','Holidays','/photography/index_holidays.asp')
    TopMenu.makeMenu('sub2401','sub24','Nepal','')
       TopMenu.makeMenu('sub24010','sub2401','Nepal 2001 - 1','/photography/nepal1.asp')
       TopMenu.makeMenu('sub24011','sub2401','Nepal 2001 - 2','/photography/nepal2.asp')
       TopMenu.makeMenu('sub24012','sub2401','Nepal 2001 - 3','/photography/nepal3.asp')
       TopMenu.makeMenu('sub24014','sub2401','Everest Circuit - map','/photography/everest_map.asp')
       TopMenu.makeMenu('sub24015','sub2401','Everest Circuit','/photography/everest_circuit.asp')
       TopMenu.makeMenu('sub24016','sub2401','Pre departure notes','/photography/everest_notes.asp')
    TopMenu.makeMenu('sub2402','sub24','France','')
          TopMenu.makeMenu('sub24020','sub2402','Paris 1999 - 1','/photography/paris99.asp')
          TopMenu.makeMenu('sub24021','sub2402','Paris 1999 - 2','/photography/paris99_2.asp')
          TopMenu.makeMenu('sub24022','sub2402','A night in Paris','/photography/paris99_night.asp')
          TopMenu.makeMenu('sub24023','sub2402','France','/photography/france.asp')
    TopMenu.makeMenu('sub2403','sub24','England','')
          TopMenu.makeMenu('sub24030','sub2403','London 1999','/photography/london99.asp')
          TopMenu.makeMenu('sub24031','sub2403','Southern England','/photography/england.asp')
    TopMenu.makeMenu('sub2404','sub24','Greece','')
          TopMenu.makeMenu('sub24040','sub2404','Greece 2002 - 1','/photography/greece1.asp')
          TopMenu.makeMenu('sub24041','sub2404','Greece 2002 - 2','/photography/greece2.asp')
          TopMenu.makeMenu('sub24042','sub2404','Greece 2002 - 3','/photography/greece3.asp')
    TopMenu.makeMenu('sub2405','sub24','Holland','')
          TopMenu.makeMenu('sub24050','sub2405','Amsterdam 2006','/photography/amsterdam_2006.asp')
          TopMenu.makeMenu('sub24051','sub2405','Around Amsterdam','/photography/amsterdam_2006b.asp')
          TopMenu.makeMenu('sub24052','sub2405','Hague 2006','/photography/hague_2006.asp')
    TopMenu.makeMenu('sub2406','sub24','Belgium','')
          TopMenu.makeMenu('sub24060','sub2406','Brussel 2006','/photography/brussel_2006.asp')
          TopMenu.makeMenu('sub24061','sub2406','Brugge 2006','/photography/brugge_2006.asp')
    TopMenu.makeMenu('sub2407','sub24','Luxembourg','/photography/luxembourg_2006.asp')
    TopMenu.makeMenu('sub2408','sub24','Canada','')
          TopMenu.makeMenu('sub24081','sub2408','Toronto 2005','/photography/toronto_2005.asp')
          TopMenu.makeMenu('sub24080','sub2408','Niagara 2005','/photography/niagara_2005.asp')
    TopMenu.makeMenu('sub2420','sub24','Malaysia','')
          TopMenu.makeMenu('sub24201','sub2420','Kuala Lumpur 2006','/photography/kualalumpur_2006.asp')
    TopMenu.makeMenu('sub2450','sub24','Australia','/photography/index_australia.asp')
          TopMenu.makeMenu('sub24501','sub2450','Mt Kaputar 2007','/photography/mt_kaputar.asp')
          TopMenu.makeMenu('sub24502','sub2450','Warrumbungle 2007','/photography/warrumbungle.asp')
 TopMenu.makeMenu('sub25','top2','Romania','/photography/index_romania.asp')
    TopMenu.makeMenu('sub251','sub25','Bucharest','/photography/bucharest.asp')
    TopMenu.makeMenu('sub252','sub25','Romanian Orthodox Church','/photography/ortodoxism.asp')
    TopMenu.makeMenu('sub253','sub25','Romanian Landscapes','/photography/romania_01.asp')
 TopMenu.makeMenu('sub26','top2','Australia','/photography/index_australia.asp')
    TopMenu.makeMenu('sub2601','sub26','Australian landscapes','/photography/australia.asp')
    TopMenu.makeMenu('sub2602','sub26','Sydney NSW','/photography/Sydney.asp')
    TopMenu.makeMenu('sub2603','sub26','Mt Kaputar NSW','/photography/mt_kaputar.asp')
    TopMenu.makeMenu('sub2604','sub26','Warrumbungle NSW','/photography/warrumbungle.asp')
    TopMenu.makeMenu('sub2605','sub26','Blue Mountains NSW','/photography/blue_mountains.asp')
 TopMenu.makeMenu('sub27','top2','High School Colleagues','/photography/index_highschool.asp')
    TopMenu.makeMenu('sub271','sub27','As we were in 1976','')
          TopMenu.makeMenu('sub2711','sub271','Page 1','/photography/highschool76_1.asp')
          TopMenu.makeMenu('sub2712','sub271','Page 2','/photography/highschool76_2.asp')
          TopMenu.makeMenu('sub2713','sub271','Page 3','/photography/highschool76_3.asp')
          TopMenu.makeMenu('sub2714','sub271','Page 4','/photography/highschool76_4.asp')
          TopMenu.makeMenu('sub2715','sub271','Page 5','/photography/highschool76_5.asp')
    TopMenu.makeMenu('sub272','sub27','As we were in 1986','/photography/highschool86.asp')
    TopMenu.makeMenu('sub273','sub27','As we were in 1993','/photography/highschool93.asp')
    TopMenu.makeMenu('sub274','sub27','As we were in 1999','/photography/highschool99.asp')
    TopMenu.makeMenu('sub275','sub27','As we were in 2002','/photography/highschool02.asp')
    TopMenu.makeMenu('sub276','sub27','As we were in 2006','')
          TopMenu.makeMenu('sub2761','sub276','Scoala','/photography/highschool06_1.asp')
          TopMenu.makeMenu('sub2762','sub276','In Clasa','/photography/highschool06_2.asp')
          TopMenu.makeMenu('sub2763','sub276','Restaurant 1','/photography/highschool06_3.asp')
          TopMenu.makeMenu('sub2764','sub276','Restaurant 2','/photography/highschool06_4.asp')
    TopMenu.makeMenu('sub279','sub27','Alte poze','/photography/highschoolxx.asp')
  TopMenu.makeMenu('sub28','top2','Minerals','/photography/index_minerals.asp')
    TopMenu.makeMenu('sub281','sub28','Minerals 1','/photography/minerals_1.asp')
    TopMenu.makeMenu('sub282','sub28','Minerals 2','/photography/minerals_2.asp')
    TopMenu.makeMenu('sub283','sub28','Minerals 3','/photography/minerals_3.asp')
    TopMenu.makeMenu('sub288','sub28','Fossils','/photography/fossils.asp')
  TopMenu.makeMenu('sub29','top2','Miscellaneous','/photography/miscellaneous.asp')


//LITERATURE
TopMenu.makeMenu('top3','','&nbsp;Literature','/literature/index.asp')
   TopMenu.makeMenu('sub30','top3','Mihail Eminescu','/eminescu/index.asp')
      TopMenu.makeMenu('sub301','sub30','Foreword - Prefata','/eminescu/foreword.asp')
         TopMenu.makeMenu('sub3010','sub301','C. M. Popescu','/eminescu/foreword_cmp.asp')
         TopMenu.makeMenu('sub3011','sub301','T. Maiorescu','/eminescu/foreword_maiorescu.asp')
         TopMenu.makeMenu('sub3012','sub301','G. Ditu','/eminescu/foreword_tz.asp')
      TopMenu.makeMenu('sub302','sub30','Poems - Poezii','/eminescu/solitude.asp')
      TopMenu.makeMenu('sub303','sub30','Contents - Sumar','/eminescu/contents.asp')
      TopMenu.makeMenu('sub304','sub30','Eminescu - Biography','/eminescu/eminescu_biography.asp')
   TopMenu.makeMenu('sub31','top3','Poems (original)','')
      TopMenu.makeMenu('sub311','sub31','English','/literature/english/index.asp')
      TopMenu.makeMenu('sub312','sub31','Romanian','/literature/romanian/index.asp')
   TopMenu.makeMenu('sub32','top3','Writings (original)','')
      TopMenu.makeMenu('sub320','sub32','English','/literature/english/index.asp')
         TopMenu.makeMenu('sub3200','sub320','Introduction','/literature/english/index.asp')
         TopMenu.makeMenu('sub3201','sub320','Alpha and Omega','/literature/english/alpha_omega.asp')
      TopMenu.makeMenu('sub321','sub32','Romanian','/literature/romanian/index.asp')
         TopMenu.makeMenu('sub3210','sub321','Introducere','/literature/romanian/index.asp')
         TopMenu.makeMenu('sub3211','sub321','Alfa si Omega','/literature/romanian/alfa_omega.asp')
   TopMenu.makeMenu('sub33','top3','Rhyming Dictionaries','/literature/dictionaries/index.asp')
   TopMenu.makeMenu('sub34','top3','Omar Khayyam','/literature/khayyam/index.asp')
      TopMenu.makeMenu('sub341','sub34','About Omar Khayyam','/literature/khayyam/about_khayyam.asp')
      TopMenu.makeMenu('sub342','sub34','Catrene (Rom)','/literature/khayyam/catrene_khayyam.asp')
      TopMenu.makeMenu('sub343','sub34','The Rubaiyat (Eng)','/literature/khayyam/rubaiyat.asp')
   TopMenu.makeMenu('sub35','top3','Lyrics','/literature/lyrics/index.asp')
      TopMenu.makeMenu('sub351','sub35','The Dark Side of the Moon','/literature/lyrics/dark_side_of_the_moon.asp')
      TopMenu.makeMenu('sub352','sub35','Yesterday','/literature/lyrics/yesterday.asp')
   TopMenu.makeMenu('sub36','top3','Quotes','/literature/quotes/index.asp')
      TopMenu.makeMenu('sub360','sub36','Quotes by category','/literature/quotes/index.asp')
      TopMenu.makeMenu('sub361','sub36','A pale Blue Dot - C. Sagan','/literature/quotes/PaleBlueDot.asp')
      TopMenu.makeMenu('sub362','sub36','If - R. Kipling','/literature/quotes/if.asp')


//THOUGHTS
TopMenu.makeMenu('top4','','&nbsp;Thoughts','/thoughts/index.asp')
   TopMenu.makeMenu('sub40','top4','English - Thoughts','/thoughts/english/index.asp')
      TopMenu.makeMenu('sub401','sub40','About Nation','/thoughts/english/about_nation.asp')
      TopMenu.makeMenu('sub402','sub40','Democracy','/thoughts/english/democracy.asp')
      TopMenu.makeMenu('sub403','sub40','Live Forever','/thoughts/english/live_forever.asp')
      TopMenu.makeMenu('sub404','sub40','Death of a lizard','/thoughts/english/lizard.asp')
      TopMenu.makeMenu('sub405','sub40','The New Millennium','/thoughts/english/new_millennium.asp')
   TopMenu.makeMenu('sub41','top4','Romanian - Ginduri','/thoughts/romanian/index.asp')
      TopMenu.makeMenu('sub411','sub41','Despre Fluturi','/thoughts/romanian/despre_fluturi.asp')
      TopMenu.makeMenu('sub412','sub41','Despre Reprezentare','/thoughts/romanian/despre_reprezentare.asp')
   TopMenu.makeMenu('sub413','sub41','Despre Univers','/thoughts/romanian/despre_univers.asp')
      TopMenu.makeMenu('sub414','sub41','Dumnezeu si St Valentine','/thoughts/romanian/dumnezeu_valentine.asp')
      TopMenu.makeMenu('sub415','sub41','Dumnezeul Informational','/thoughts/romanian/dumnezeul_informational.asp')
      TopMenu.makeMenu('sub416','sub41','Homo Dollaris','/thoughts/romanian/homo_dollaris.asp')
      TopMenu.makeMenu('sub417','sub41','Libertate si Iubire','/thoughts/romanian/libertate_iubire.asp')
      TopMenu.makeMenu('sub418','sub41','Nimicuri','/thoughts/romanian/nimicuri.asp')
      TopMenu.makeMenu('sub419','sub41','Ordine si Haos','/thoughts/romanian/ordine_haos.asp')
      TopMenu.makeMenu('sub4110','sub41','Secolul XXI','/thoughts/romanian/secolul21.asp')
      TopMenu.makeMenu('sub4111','sub41','Sf Sofia','/thoughts/romanian/sf_sofia.asp')
      TopMenu.makeMenu('sub4112','sub41','Despre Simetrie','/thoughts/romanian/simetrie.asp')
      TopMenu.makeMenu('sub4113','sub41','Special Person','/thoughts/romanian/special_person.asp')
      TopMenu.makeMenu('sub4114','sub41','Timpul - Dar Suprem','/thoughts/romanian/timpul_ca_dar_suprem.asp')
      TopMenu.makeMenu('sub4115','sub41','Trecut - Prezent - Viitor','/thoughts/romanian/trecut_prezent_viitor.asp')
      TopMenu.makeMenu('sub4116','sub41','Viata si Moarte','/thoughts/romanian/viata_moarte.asp')

//ASTRONOMY
TopMenu.makeMenu('top5','','&nbsp;Astronomy','/astronomy/index.asp')
   TopMenu.makeMenu('sub50','top5','Introduction','/astronomy/introduction.asp')
   TopMenu.makeMenu('sub51','top5','Equipment','/astronomy/index_equipment.asp')
        TopMenu.makeMenu('sub5101','sub51','ETX 90','/astronomy/etx.asp')
        TopMenu.makeMenu('sub5202','sub51','Orion Short Tube 80','/astronomy/orion.asp')
        TopMenu.makeMenu('sub5203','sub51','Orion 80ED','/astronomy/orion_80ed.asp')
        TopMenu.makeMenu('sub5204','sub51','Coronado PST','/astronomy/coronado_pst.asp')
        TopMenu.makeMenu('sub5205','sub51','William Optics 80FD','/astronomy/williams_optics_80fd.asp')
        TopMenu.makeMenu('sub5206','sub51','HEQ5 Pro mount','/astronomy/mount_heq5_pro.asp')
        TopMenu.makeMenu('sub5298','sub51','Buying a telescope','/astronomy/star_hopping/_buying_a_telescope.asp')
        TopMenu.makeMenu('sub5299','sub51','Telescope parameters','/astronomy/telescope_parameters.asp')
   TopMenu.makeMenu('sub52','top5','Astronomical targets','/astronomy/targets/index.asp')
      TopMenu.makeMenu('sub521','sub52','Urban Deep Sky Objects','/astronomy/targets/urban_dso.asp')
      TopMenu.makeMenu('sub522','sub52','Urban visible objects','/astronomy/targets/urban_visible.asp')
      TopMenu.makeMenu('sub523','sub52','Double stars','/astronomy/targets/double_stars.asp')
      TopMenu.makeMenu('sub524','sub52','Carbon stars','/astronomy/targets/carbon_stars.asp')
      TopMenu.makeMenu('sub525','sub52','Must see objects','/astronomy/targets/must_see.asp')
   TopMenu.makeMenu('sub53','top5','How to...','/astronomy/how_to/index.asp')
      TopMenu.makeMenu('sub531','sub53','Polar alignment (south)','/astronomy/how_to/polar_alignment_s.asp')
   TopMenu.makeMenu('sub54','top5','Timelines','/astronomy/timelines.asp')
      TopMenu.makeMenu('sub541','sub54','Universe timeline','/astronomy/universe_timeline.asp')
      TopMenu.makeMenu('sub542','sub54','Earth timeline','/astronomy/earth_timeline.asp')
   TopMenu.makeMenu('sub55','top5','Astrophotography','/photography/index_astrophotography.asp')
        TopMenu.makeMenu('sub5501','sub55','First pictures...','/photography/astrophoto.asp')
        TopMenu.makeMenu('sub5503','sub55','Venus transit','/astronomy/venus_transit.asp')
        TopMenu.makeMenu('sub5504','sub55','Solar Eclipse photography','/astronomy/astrophotography/solar_eclipse.asp')
        TopMenu.makeMenu('sub5505','sub55','Lunar Eclipse photography','/astronomy/astrophotography/lunar_eclipse.asp')
        TopMenu.makeMenu('sub5509','sub55','Astrophotography calculator','/astronomy/astrophoto_calculator.asp')
   TopMenu.makeMenu('sub56','top5','Miscellaneous','')
        TopMenu.makeMenu('sub560','sub56','Moon phase','/astronomy/moon_phase.asp')
        TopMenu.makeMenu('sub561','sub56','Meteorite Craters Aus','/astronomy/meteorite_impacts_australia.asp')
        TopMenu.makeMenu('sub569','sub56','Star Parties (AUS)','')
            TopMenu.makeMenu('sub5690','sub569','SPSP-directions','/astronomy/spsp_directions.asp')
            TopMenu.makeMenu('sub5692','sub569','South Pacific Star Party','/photography/star_party2001.asp')
   TopMenu.makeMenu('sub59','top5','Virtual Star Hopping','/astronomy/star_hopping/_index_map.asp')
             TopMenu.makeMenu('sub5901','sub59','Introduction','/astronomy/star_hopping/_about_star_hopping.asp')
             TopMenu.makeMenu('sub5902','sub59','Buying a telescope','/astronomy/star_hopping/_buying_a_telescope.asp')
             TopMenu.makeMenu('sub5903','sub59','To the maps','/astronomy/star_hopping/andr_map.asp')
         //  TopMenu.makeMenu('sub5904','sub59','Aqarius','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5905','sub59','Auriga - Perseus','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5906','sub59','Cancer','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5907','sub59','Canis Major','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5908','sub59','Capricornus','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5909','sub59','Carina','/astronomy/star_hopping/****_map.asp')
         //    TopMenu.makeMenu('sub5910','sub59','Cassiopeia - Perseus','/astronomy/star_hopping/cass_map.asp')
         //  TopMenu.makeMenu('sub5911','sub59','Coma Berenices','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5912','sub59','Corvus','/astronomy/star_hopping/****_map.asp')
         //    TopMenu.makeMenu('sub5913','sub59','Crux','/astronomy/star_hopping/crux_map.asp')
         //  TopMenu.makeMenu('sub5914','sub59','Cygnus','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5915','sub59','Delphinus','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5916','sub59','Dorado','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5917','sub59','Furnace','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5918','sub59','Gemini','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5919','sub59','Leo','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5920','sub59','Mensa','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5921','sub59','Orion','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5922','sub59','Piscis','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5923','sub59','Reticulum','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5924','sub59','Sagita','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5925','sub59','Sagitarius','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5926','sub59','Scorpius','/astronomy/star_hopping/****_map.asp')
         //    TopMenu.makeMenu('sub5927','sub59','Taurus','/astronomy/star_hopping/tau_map.asp')
         //  TopMenu.makeMenu('sub5928','sub59','Ursa - Big Dipper','/astronomy/star_hopping/virg_map.asp')
         //  TopMenu.makeMenu('sub5929','sub59','Vela','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5930','sub59','Virgo','/astronomy/star_hopping/****_map.asp')
         //  TopMenu.makeMenu('sub5931','sub59','Vulpecula','/astronomy/star_hopping/****_map.asp')


//MISCELLANEOUS
TopMenu.makeMenu('top6','','&nbsp;Miscellaneous','/miscellaneous/index.asp')
   TopMenu.makeMenu('sub61','top6','Dieting','/miscellaneous/diet/index.asp')
   TopMenu.makeMenu('sub62','top6','Egypt','/miscellaneous/egypt/index.asp')
      TopMenu.makeMenu('sub620','sub62','Introduction','/miscellaneous/egypt/introduction.asp')
      TopMenu.makeMenu('sub621','sub62','The Rosseta Stone','/miscellaneous/egypt/rosetta_stone_text.asp')
      TopMenu.makeMenu('sub622','sub62','Jean Francois Champollion','/miscellaneous/egypt/champollion.asp')
      TopMenu.makeMenu('sub623','sub62','Play with hieroglyphs','/miscellaneous/egypt/scribe.asp')
   TopMenu.makeMenu('sub63','top6','Time and Weather','/world_weather.asp')
   TopMenu.makeMenu('sub64','top6','Les droits de l&rsquo;homme','/miscellaneous/droits_de_homes.asp')
   TopMenu.makeMenu('sub65','top6','Adjust your monitor','/miscellaneous/colourchart.asp')
   TopMenu.makeMenu('sub66','top6','Useful Links','/miscellaneous/links/index.asp')
   TopMenu.makeMenu('sub68','top6','Web Design','')
      TopMenu.makeMenu('sub681','sub68','Web Colours','/miscellaneous/webdesign/webcolours.asp')
      TopMenu.makeMenu('sub682','sub68','Special Entities','/miscellaneous/webdesign/web_special_entities.asp')
   TopMenu.makeMenu('sub69','top6','My Other Web Sites','/miscellaneous/my_other_websites.asp')

//Leave this line - it constructs the menu
TopMenu.construct()

