window.onload=function(){
rand_testimony();
}
var items = new Array();
items[0]="<br>I am very happy that I bought this app.<br/>The graphics are rich and beautiful and the weather information comes very fast.<br/>I can see the weather information on the entire large screen just by turning my phone sideways.<br/>I can see the whole country if I want and double-tap on other locations on the map that interest me and zoom in. It is very responsive.<br/>The trend graphs are very nicely done. I can see what future weather is coming with just a glance and the handsome icon tells me rest with just a glance.<br/>Excellent design, very fast and I can customize it for what interests me. Very pleased, well worth the money. <strong> -Doc. Len</strong>";

items[1]="<br>This is a great weather application for the iPhone. The full screen ‘landscape’ animated radar is great. I’ve had no trouble with the app at all, works as advertised and worth the price. The developer responded to a suggestion that I sent via e-mail within a day. Great customer service. The overall iTunes rating should be higher for this application. <strong>   -Tendee</strong>";


items[2]="<br>I’m a touring motorcyclist who needs weather everyday without knowing my zip code. This app is perfect! The radar map (horizontal) is unbelievable. <strong>   -JW4449</strong>";

items[3]="<br>Great graphics, easy to use, very handy full screen radar, easy to add locations, excellent value for the money. I would certainly buy again if I lost my Touch and excellent customer support for questions.<strong>   -Ken</strong>";

items[4]="<br>This is a solid app, but the radar makes it even better. The radar is shown in an animated mode, using Microsoft Virtual Earth. Very accurate and easy to use. I highly recommend the app at any price if you want a good weather app.<strong>   -mbazzoni</strong>";

items[5]="<br>As a professional pilot, I find this app to be a wonderful resource for flight planning.<strong>   -CaptChill</strong>";

items[6]="<br>I emailed the developers with a few questions last week, most specifically I wanted to know the schedule to implement radar looping. They promised it would be out this week. Well viola, here it is, as promised. Gotta love a developer who delivers on his promises. This is a great app, beautifully done. As it is, it’s a VERY solid app and well worth the money. <strong>   -Conejo23</strong>";

items[7]="<br>Great radar, great trend charts, and great updates! Love the embedded time, but would love to be able to slow down the speed of the animations. I paid 14.95 months ago and still think it was money VERY well spent. In my line of work, I need to know the weather in the field minute by minute. This “mobile radar” is exactly what I need. <strong>   -RocketApe</strong>";

items[8]="<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];
}

