function banner() {};
b = new banner();
n = 0;
//-----------------------------Database----------------------------
b[n++]= "Download the latest school newsletter"
b[n++]= "See the latest pictures in the Photo Album"
b[n++]= "Visit the Video Gallery for sights and sounds of school life"
b[n++]= "Go to the Parents' Area for Notices and E-Letters"
b[n++]= "Visit the Class Pages to find out about each class"
b[n++]= "Find out more about the Parent Council"
b[n++]= "Find out what P7 children thought about their Trip to Kilbowie"
b[n++]= "See pictures from Eco/Health Week 2010"
b[n++]= "Find out about our partner High School, Cumbernauld High School"
//------------------------------------------------------------------
i=Math.floor(Math.random() * n) ;
document.write( b[i] );