between=28 //The pixel between the menus and the submenus
mainheight=25 //The height of the mainmenus
subheight=22 //The height of the submenus
pxspeed=13 //The pixel speed of the animation
timspeed=15 //The timer speed of the animation
menuy=80 //The top placement of the menu.
menux=100 //The left placement of the menu
//Images - Play with these
level0_regular="images/level0_regular.gif"
level0_round="images/level0_round.gif"
level1_regular="images/level1_regular.gif"
level1_round="images/level1_round.gif"
level1_sub="images/level1_sub.gif"
level1_sub_round="images/level1_sub.gif"
level1_round2="images/level1_sub.gif"
level2_regular="images/level2_round.gif"
level2_round="images/level2_round.gif"

preLoadBackgrounds(level0_regular,level0_round,level1_regular,level1_round,level1_sub,level2_round)


//There are 3 different types of menus you can make
//top = Main menus
//sub = Sub menus
//sub2 = SubSub menus

//makeMenu('TYPE','TEXT','LINK','TARGET', 'END (THE LAST MENU)')

//Menu 0
makeMenu('top','Elite Keylogger profile')
	makeMenu('sub','Current version overview','current_version.html', 'SUB')
	makeMenu('sub','Demo version limitations','demo_limitations.html', 'SUB')
	makeMenu('sub','Obtaining full version','full.html', 'SUB')
	makeMenu('sub','Getting help and upgrades','support.html', 'SUB')
	makeMenu('sub','Version history','version_history.html', 'SUB')

//Menu 1
makeMenu('top','Installation')
	makeMenu('sub','Obtaining latest version','latest.html', 'SUB')
	makeMenu('sub','Visible mode installation','visible.html', 'SUB')
	makeMenu('sub','Invisible mode installation','invisible.html', 'SUB')
	makeMenu('sub','Logs viewer installation','logs_viewer.html', 'SUB')

//Menu 2
makeMenu('top','How to use Elite Keylogger')
  makeMenu('sub','Unhiding','unhiding.html', 'SUB')
  makeMenu('sub','Viewing logs')

    makeMenu('sub2','Generating logs','generate.html', 'SUB')
    makeMenu('sub2','Viewing Keystrokes log','keystrokes_log.html', 'SUB')
    makeMenu('sub2','Viewing Screenshots log','screenshots_log.html', 'SUB')
    makeMenu('sub2','Viewing Internet activity','web_log.html', 'SUB')
    makeMenu('sub2','Viewing Applications history','apps_log.html', 'SUB')
    makeMenu('sub2','Viewing Clipboard log','clipboard_log.html', 'SUB')
    makeMenu('sub2','Viewing E-mail history','email_log.html', 'SUB')
    makeMenu('sub2','Viewing Passwords log','pass_log.html', 'SUB')
    makeMenu('sub2','Viewing Printed documents log','printed.html', 'SUB')
    makeMenu('sub2','Filtering logs','filter.html', 'SUB')

  makeMenu('sub','Configuration')

    makeMenu('sub2','Main configuration','main_config.html', 'SUB')
    makeMenu('sub2','Log options','log_options.html', 'SUB')
    makeMenu('sub2','Quick tasks','quick.html', 'SUB')

  makeMenu('sub','E-mailing logs','logs_email.html', 'SUB')
  makeMenu('sub','Saving logs to network drive','network.html', 'SUB')
  makeMenu('sub','Exporting logs into RTF','rtf.html', 'SUB')

//Menu 3
makeMenu('top','Uninstallation','uninstall.html', 'SUB')
makeMenu('top','Tips and tricks','tips.html', 'SUB')

//Starting the menu
onload=SlideMenuInit;