// 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( "

logo

", "

Intelligence

", "", "

Legends

", "", "

Energy Balls

", "", "

Telekinesis

", "", "

Teleportation

", "", "

Telepathy

", "", "" ) while (line_count < 48){ // equals the number of double-quoted lines document.write(nav_items[line_count]); line_count++; }