var arr = new Array();

arr[0] = ["Map: Virginia Tech and UVa football recruits","http://www.roanoke.com/datasphere/wb/xp-173686"];
arr[1] = ["Movie reviews and listings","http://www.roanoke.com/entertainment/movies/movie/nowPlaying.aspx"];
arr[2] = ["Online puzzles: Sudoku, Battleship and more","http://www.roanoke.com/entertainment/puzzles/"];

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>');
}
