home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / internet / archeo / js / ssmItems.js < prev    next >
Text File  |  2001-09-14  |  2KB  |  58 lines

  1. <!--
  2.  
  3. /*
  4. Configure menu styles below
  5. NOTE: To edit the link colors, go to the STYLE tags and edit the ssm2Items colors
  6. */
  7. YOffset=150; // no quotes!!
  8. XOffset=0;
  9. staticYOffset=30; // no quotes!!
  10. slideSpeed=20 // no quotes!!
  11. waitTime=100; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.
  12. menuBGColor="black";
  13. menuIsStatic="yes"; //this sets whether menu should stay static on the screen
  14. menuWidth=200; // Must be a multiple of 10! no quotes!!
  15. menuCols=2;
  16. hdrFontFamily="verdana";
  17. hdrFontSize="2";
  18. hdrFontColor="white";
  19. hdrBGColor="#170088";
  20. hdrAlign="left";
  21. hdrVAlign="center";
  22. hdrHeight="15";
  23. linkFontFamily="Verdana";
  24. linkFontSize="2";
  25. linkBGColor="white";
  26. linkOverBGColor="#FFFF99";
  27. linkTarget="_top";
  28. linkAlign="Left";
  29. barBGColor="#444444";
  30. barFontFamily="Verdana";
  31. barFontSize="2";
  32. barFontColor="white";
  33. barVAlign="center";
  34. barWidth=20; // no quotes!!
  35. barText="SIDE MENU"; // <IMG> tag supported. Put exact html for an image to show.
  36.  
  37. ///////////////////////////
  38.  
  39. // ssmItems[...]=[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
  40. ssmItems[0]=["Menu"] //create header
  41. ssmItems[1]=["Dynamic Drive", "http://www.dynamicdrive.com", ""]
  42. ssmItems[2]=["What's New", "http://www.dynamicdrive.com/new.htm",""]
  43. ssmItems[3]=["What's Hot", "http://www.dynamicdrive.com/hot.htm", ""]
  44. ssmItems[4]=["Message Forum", "http://freewarejava.com/cgi-bin/Ultimate.cgi", "_new"]
  45. ssmItems[5]=["Submit Script", "http://www.dynamicdrive.com/submitscript.htm", ""]
  46. ssmItems[6]=["Link to Us", "http://www.dynamicdrive.com/link.htm", ""]
  47.  
  48. ssmItems[7]=["FAQ", "http://www.dynamicdrive.com/faqs.htm", "", 1, "no"] //create two column row
  49. ssmItems[8]=["Email", "http://www.dynamicdrive.com/contact.htm", "",1]
  50.  
  51. ssmItems[9]=["External Links", "", ""] //create header
  52. ssmItems[10]=["Website Abstraction", "http://www.wsabstract.com", ""]
  53. ssmItems[11]=["Freewarejava", "http://www.freewarejava.com", ""]
  54. ssmItems[12]=["Dynamic Fx", "http://absolutegb.com/maximus/", ""]
  55.  
  56. buildMenu();
  57.  
  58. //-->