// Original script provided by esapplications.com,
// Although Denise figured out how to make it actually useful,
// added all the instructional comments, and edited it mercilessly.
// >:P
//Surround each line with double quotes (")
//Change interior quotes to single quotes (')
//End each with a comma (,) except the last "Done" line
//Change the "count less than" to the exact number of double-quoted lines
var line_count = 0;
nav_items = new Array(
"

",
"Intelligence
",
"",
"Legends
",
"",
"Energy Balls
",
"",
"Telekinesis
",
"",
"- Ask Mew & Mewtwo
",
"- Fanworks
",
// contains: Fanart, Drawing Guides, Sprites, Fanfiction, Poetry, Theories(?), Songs that Fit, AMVs
"- Shippings
",
"- Copy Cats
",
"- Oddities
",
// contains: Oddness, Say What, Crafts, Merchandise
"
",
"Teleportation
",
"",
"Telepathy
",
"",
""
)
while (line_count < 48){ // equals the number of double-quoted lines
document.write(nav_items[line_count]);
line_count++;
}