window.onload=function(){
rand_testimony();
}
var items = new Array();

items[0]="<br>I’m a touring motorcyclist who needs weather everyday without knowing my zip code. This app is perfect! The radar map is unbelievable. <strong>   -JW4449</strong>";

items[1]="<br>As a professional pilot, I find this app to be a wonderful resource for flight planning.<strong>   -CaptChill</strong>";

items[2]="<br>I bought this app when it came out and all I can say is move over other Weather applications.  MyWeather Mobile tops them all.  The detail put into this application is amazing.  Looking forward to what new things come our way.<strong>   -greenmymac</strong>";

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];
}

