function randomSpotlight() {
    var spotlights = new Array();

    // Probabilities have been adjusted.
    spotlights.push('lane-harder.html');
    spotlights.push('j-eric-schmidt.html');
    spotlights.push('dan-lazarescou.html');

    var i = Math.round(Math.random() * 1000) % spotlights.length;

    $("#spotlight").load('/spotlight/rotation/' + spotlights[i]);
}

$(document).ready(function() {
    randomSpotlight();
});
