//
// Random Homepage Billboard
// Written by Ben @ Popcorn 2008
//

images = new Array(4);

images[0] = '<img class="banner" src="/images/content/banner-homepage1.jpg" alt="Fairness - Innovation - Harmony" />';
images[1] = '<img class="banner" src="/images/content/banner-homepage2.jpg" alt="Fairness - Innovation - Harmony" />';
images[2] = '<img class="banner" src="/images/content/banner-homepage3.jpg" alt="Fairness - Innovation - Harmony" />';
images[3] = '<img class="banner" src="/images/content/banner-homepage4.jpg" alt="Fairness - Innovation - Harmony" />';

index = Math.floor(Math.random() * images.length);

document.write(images[index]);