// Auto News Script
var randText = new Array();  

randText[0] = "<img src='Images/headerImages/1.jpg' width='1080' height='282' />"
randText[1] = "<img src='Images/headerImages/2.jpg' width='1080' height='282' />"
randText[2] = "<img src='Images/headerImages/3.jpg' width='1080' height='282' />"
randText[3] = "<img src='Images/headerImages/4.jpg' width='1080' height='282' />"
randText[4] = "<img src='Images/headerImages/5.jpg' width='1080' height='282' />"
randText[5] = "<img src='Images/headerImages/6.jpg' width='1080' height='282' />"
randText[6] = "<img src='Images/headerImages/7.jpg' width='1080' height='282' />"
randText[7] = "<img src='Images/headerImages/8.jpg' width='1080' height='282' />"
randText[8] = "<img src='Images/headerImages/9.jpg' width='1080' height='282' />"
randText[9] = "<img src='Images/headerImages/10.jpg' width='1080' height='282' />"
randText[10] = "<img src='Images/headerImages/11.jpg' width='1080' height='282' />"
randText[11] = "<img src='Images/headerImages/12.jpg' width='1080' height='282' />"

function displayRandomText() { 

var randNum = Math.floor(Math.random()*randText.length); 
document.write(randText[randNum]); } 
