/* Java script to rotate the pictures on the home page, insert this where you want the pictures to be rotated and it will play an IMG tag with a random source, make sure to create a folder called js in /Portals/0/images and to name the pictures 1.png 2.png 3.png etc */

var numOfPics = 3; //change the number to the number of pictures in the /Portals/0/images/js directory
var pictureNumber = Math.floor(Math.random() * numOfPics + 1);
var fileName = "/Portals/0/images/js/" + pictureNumber + ".png";
document.write("<img height='320' width='510' src='" + fileName + "' />");