<!--
//Javascript Created by Computerhope http://www.computerhope.com

images = new Array(6);
images[0] = "<img src='img/layout/header-01.jpg' width='532' height='175' alt=''>";
images[1] = "<img src='img/layout/header-02.jpg' width='532' height='175' alt=''>";
images[2] = "<img src='img/layout/header-03.jpg' width='532' height='175' alt=''>";
images[3] = "<img src='img/layout/header-04.jpg' width='532' height='175' alt=''>";
images[4] = "<img src='img/layout/header-05.jpg' width='532' height='175' alt=''>";
images[5] = "<img src='img/layout/header-06.jpg' width='532' height='175' alt=''>";
index = Math.floor(Math.random() * images.length);

document.write(images[index]);

// -->

