﻿if (document.getElementById) { window.onload = swap_image, active_link };
function swap_image() {
    var numimages = 6;
    var imagepath = "images/";
    MyImages = new Array();
    MyImages[0] = 'gino_b.png';
    MyImages[1] = 'debbie_b.png';
    MyImages[2] = 'mike_b.png';
    MyImages[3] = 'lisa_shayla.png';
    MyImages[4] = 'topper.png';
    MyImages[5] = 'michelle_c.png';
    x = (Math.floor(Math.random() * numimages));
    randomimage = (MyImages[x]);
    person = randomimage.substring(0, randomimage.length - 4)
    document.getElementById("banner").style.backgroundImage = "url(" + imagepath + randomimage + ")";
    document.getElementById("person_link").href = "portfolio.aspx?person='" + person + "'";
}
function active_link(screen) {
    var sPath = window.location.href;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    if (sPage == '')
    {sPage = 'default.aspx'; }
    document.getElementById(sPage).className = "active";
}
