// Script provided by esapplications.com
var m_count = 0;
m_items = new Array(
"| mission",
"news",
"workshops",
"about janet",
"success stories",
"links",
"contact"
)
while (m_count < 7){ // equals the # of m_items
document.write(m_items[m_count]+" | ");
m_count++;
}