// JavaScript Document
<!--
var bgs = new Array() // Possible backgrounds
bgs[0] = "1.jpg"
bgs[1] = "2.jpg"
bgs[2] = "3.jpg"
bgs[3] = "4.jpg"
bgs[4] = "5.jpg"
bgs[5] = "6.jpg"


var rand = Math.floor(Math.random() * bgs.length)

document.getElementById('subhead').style.backgroundImage = 'url(http://www.drexel.edu/provost/fde/images/template/subheader/' + bgs[rand] + ')';
-->