// Script provided by esapplications.com
var m_count = 0;
m_items = new Array(
"Home",
"About Me",
"Online Websites",
"Logos, etc.",
"Prices",
"Other Art",
"My Horses",
"Contact Me",
"Interesting Links",
"My Blog",
"Guestbook",
"Tack Shop"
)
while (m_count < 12){ // equals the # of m_items
document.write(m_items[m_count]+"
");
m_count++;
}