// JavaScript for the rotating graphics on the Communications 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/communications/images/homepage/pic4.jpg' width='500' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/communications/images/homepage/pic3.jpg' width='500' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/communications/images/homepage/pic1.jpg' width='500' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/communications/images/homepage/webpic2.jpg' width='500' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/communications/images/homepage/pic5.jpg' width='500' height='148' />");
fbpic.push("<img src='http://www.bu.edu/law/communications/images/homepage/pic2.jpg' width='500' 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)";*/
/* the above code was commented out as it interferred with the sidenav */

/* Continuously changes the graphic */

timedCount();