// IMAGE ROTATE 

//INSERT IMAGE URL
imgArray=new Array
(
"/centenary/resources/images/pen-to-pixel-1.jpg",
"/centenary/resources/images/pen-to-pixel-2.jpg",
"/centenary/resources/images/pen-to-pixel-3.jpg"
);

//INSERT LINKS HERE
urlArray=new Array
(
"http://www.swinburne.edu.au/centenary/centenary-events/coming-events.html?utm_source=internal-centenary&utm_medium=centenary-promo&utm_content=pen-to-pixel-1&utm_campaign=pen-to-pixel#12.1",
"http://www.swinburne.edu.au/centenary/centenary-events/coming-events.html?utm_source=internal-centenary&utm_medium=centenary-promo&utm_content=pen-to-pixel-2&utm_campaign=pen-to-pixel#12.1",
"http://www.swinburne.edu.au/centenary/centenary-events/coming-events.html?utm_source=internal-centenary&utm_medium=centenary-promo&utm_content=pen-to-pixel-3&utm_campaign=pen-to-pixel#12.1"
);

rotateimg=Math.floor(imgArray.length*Math.random());
rotateimg='<a href="'+urlArray[rotateimg]+'"><img src="'+ imgArray[rotateimg]+ '" border="0"></a>';


