//2008/06/24 RandomImage Script
var i;
var image = new Array();

//Set the image name.
image[0] = "/en/tsat/images/tit_01.jpg";
image[1] = "/en/tsat/images/tit_02.jpg";

i = Math.floor(Math.random() * image.length);

document.write("<div class='mL15'><img id='topImage' src='" + image[i] + "' width='545' height='140' alt='Transportation Systems &amp; Advanced Technology Division' /></div>");
