// Script for a Jump Menu
function display(url) {
	self.location.href=url;  
}
// end of Jump Menu script


// Script for the Banner Random Image Rotation
var slides=new Array();
slides = [
 "media/global/banner1.jpg",
 "media/global/banner2.jpg",
 "media/global/banner3.jpg",
 "media/global/banner4.jpg",
 "media/global/banner5.jpg"
];

function randomImage() {
var choice;
choice = Math.floor(Math.random()*slides.length);
document.getElementById('banner2').style.background = "#9c0000 url(" + slides[choice] + ") no-repeat 86px 0";
}

// end of Image Rotation script


// Script for the Banner Random Image Rotation in Departmental pages - added by Qinni Yang CFL 10 August 2004 
 
 function randomImageDept() {
var choice;
choice = Math.floor(Math.random()*slides.length);
document.getElementById('banner3').style.background = "#9c0000 url(" + slides[choice] + ") no-repeat 86px 0";
}

// end of Image Rotation script

