// JavaScript for the rotating graphics on the JD Central landing page.
function timedCount()
{
nextPic('firstpic', 'secondpic', 'forward');
t=setTimeout("timedCount()",16000);
}

/* Create array for images */
var fbpic = new Array();

/* Load graphics */
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/IMG4253.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/nightview.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/graphics/hp-templates/central-banner.jpg' width='582' height='147' />");
fbpic.push("<img src='http://www.bu.edu/law/graphics/hp-templates/central-jd-banner.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/BarStools.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/Bikes.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/BlueChairs1.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/Books4.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/Books5.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/Books7.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/BostonView.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/BUBeach.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/Eagle.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/FramedPhotos.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/GrayBricks.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/OldAlumni.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/OldMap.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/Pebbles.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/RedandGrayBricks.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/SchoolofLaw.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/Statue.jpg' width='581' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/central/jd/images/StoneBuSeal.jpg' width='581' height='148' />");
/* Randomize Array of images */
fisherYates(fbpic);

/* Standard Flipbook function */
initFade("firstpic","secondpic");

/* gets rid of background image once first and second images are set */
/* the background image is there in case of no javascript or some other failure */
document.getElementById("main").style.background = "url(http://www.bu.edu/law/graphics/hp-templates/bg-white.jpg)";

/* Continuously changes the graphic */
timedCount();