
var text_st = new Array("A Scout smiles and whistles under all circumstances.", "A Scout is never taken by surprise; he knows exactly what to do when anything unexpected happens.", "The most important object in Boy Scout training is to educate, not instruct.", 
"The most important object in Boy Scout training is to educate, not instruct.", "Every moment is a golden one for him who has the vision to recognize it as such.", "Be bold and mighty powers will come to your aid.", "Be more splendid, more extraordinary. Use every moment to fill yourself up. ",  
"Your work is to discover your world and then with all your heart give yourself to it.", "What most people need to learn in life is how to love people and use things instead of using people and loving things.");

var l = text_st.length;

var rnd_no = Math.round((l-1)*Math.random());

document.write(text_st[rnd_no]);

