//Javascript Created by Computerhope http://www.computerhope.com
//store the quotations in arrays

 var amo = 6;     
    var texty = new Array();
        
texty[0] = '<img src="../images/SB-1-Desire.jpg" style="vertical-align:bottom;" />';

texty[1] = '<img src="../images/SB-2-Awareness.jpg" style="vertical-align:bottom;" />';

texty[2] = '<img src="../images/SB-3-Meaning.jpg" style="vertical-align:bottom;" />';

texty[3] = '<img src="../images/SB-4-choice.jpg" style="vertical-align:bottom;" />';

texty[4] = '<img src="../images/SB-5-Love.jpg" style="vertical-align:bottom;" />';

texty[5] = '<img src="../images/SB-6-Choice.jpg" style="vertical-align:bottom;" />';


function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
var choice = pickRandom(amo);

