/* This is where you store your links for building a menu. Entries listed below are taken from brig's (eatonweb) weblog.js file, and included only as an example of how to set up this file. It should be edited as needed. */ /* ***************************************************************** category[ i] = string Categories are displayed in the order they are listed in the category array ***************************************************************** */ var category = new Array(); category[0] = "General"; category[1] = "Computers/Tech"; category[2] = "Education/Research"; /* ***************************************************************** type[ i ] = string; ***************************************************************** */ var type = new Array(); type[0] = "Links"; type[1] = "Commentary"; type[2] = "Journal"; /* ***************************************************************** rate[ i ] = string; ***************************************************************** */ var rate = new Array(); rate[0] = "Continuous"; rate[1] = "Daily"; rate[2] = "Almost Daily"; /* ***************************************************************** my_list[ i ] = [ name , url , rate , type , category , date added ] Note : all items in the sub-array are strings, and items 2-4 (3-5 if you don't think like a computer) point to corresponding items in array x Note : items can be entered willy-nilly since they are alphabetized on the fly. Most of these items aren't yet used in surfmenu. brig at eatonweb took the whole idea of storing items in arrays and added the extra entries so she could do all kinds of cool tricks on her portal site. Her's was a better set of arrays, so I just decided that surfmenu should use it too. ***************************************************************** */ var my_list = new Array(); my_list[0] = [ "RobotWisdom" , "http://www.robotwisdom.com/" ,"Continuous" , "Commentary" , "General" , "3/1/99" ] my_list[1] = [ "Flutterby" , "http://www.flutterby.com/" , "Daily" ,"Commentary" , "General" , "3/1/99" ] my_list[2] = [ "Kottke.org" , "http://www.kottke.org/" , "Almost Daily" , "Commentary" , "General" , "3/1/99" ]