// IMAGE ROTATE 

//INSERT IMAGE URL
imgArray=new Array
(
"http://www.swinburne.edu.au/images/promo/carbon-accounting-medium.jpg",
"http://www.swinburne.edu.au/images/promo/wantirna-sustainable-building-medium.jpg",
"http://www.swinburne.edu.au/images/promo/sustainability-courses-medium.jpg"
);

//INSERT LINKS HERE
urlArray=new Array
(
"http://www.swinburne.edu.au/ncs/Education/CarbonAcc.html",
"http://www.swinburne.edu.au/ncs/Wantirna.html",
"http://www.swinburne.edu.au/ncs/Education/education.html"
);

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


