window.onload=function(){
rand_testimony();
}
var items = new Array();
items[0]="<strong>Wow!</strong><br>Best weather app. Awesome display and holds multiple cities. Also awesome FUNTIONALITY, very simple and easy, emphasis on awesome display";

items[1]="<strong>Easy to use</strong><br>Compared to the other apps available for the bold, this app is easy to use and actually attractive. The other apps look straight out of the 1980s.";

items[2]="<strong>Great app</strong><br>Nice interface, easy to view info. Download this!";

items[3]="<strong>Best weather app available</strong><br>Way to go MyWeather!";

items[4]="<strong>Very good weather app</strong><br>This is a pretty weather app. It looks nice and provides pretty much all the info I need, and then some. ";

function testimony(val) {
var val;
document.getElementById('testimony').innerHTML = items[val];
}

function rand_testimony() {
random_num = Math.floor(Math.random() * items.length)
document.getElementById('testimony').innerHTML = items[random_num];
}

