function randomPic(theArray){
var imagesFolder = "http://www.uni.edu/music/images/mastheads/";
return imagesFolder + theArray[Math.floor(Math.random() * theArray.length)];
}