var arr = new Array();

arr[0] = ["Share Your Best Shots","http://www.flickr.com/photos/newrivervalley/"];
arr[1] = ["Opinions of the NRV","http://www.roanoke.com/news/nrv/5339"];
arr[2] = ["Community Current blog","http://blogs.roanoke.com/communitycurrent/"];


function CheckThisOut() {
    val = (Math.round(Math.random()*(arr.length-1)));
    document.write('<div class="checkitout"><a href="' + arr[val][1] + '">' + arr[val][0] + '</a></div>');
}


 
