function randImgCap()
{
var banner = new Array();
banner[0] ="../images/client_projects/client_projects_1.jpg"
banner[1] ="../images/client_projects/client_projects_2.jpg"
banner[2] ="../images/client_projects/client_projects_3.jpg"
banner[3] ="../images/client_projects/client_projects_4.jpg";
banner[4] ="../images/client_projects/client_projects_5.jpg";
banner[5] ="../images/client_projects/client_projects_6.jpg";
banner[6] ="../images/client_projects/client_projects_7.jpg";
banner[7] ="../images/client_projects/client_projects_8.jpg";
banner[8] ="../images/client_projects/client_projects_9.jpg";
banner[9] ="../images/client_projects/client_projects_10.jpg";
banner[10] ="../images/client_projects/client_projects_11.jpg";
banner[11] ="../images/client_projects/client_projects_12.jpg";


var caption = new Array();
caption[0] = "&#x25b4; Brand Identity: Astramoveo"
caption[1] = "&#x25b4; Brand Identity: Webby Connect"
caption[2] = "&#x25b4; Brand Identity: Tangerine Book Arts"
caption[3] = "&#x25b4; Brand Identity: Z Modern"
caption[4] = "&#x25b4; Brand Identity: Open House Denver Metro"
caption[5] = "&#x25b4; Brand Identity: Kind Eye"
caption[6] = "&#x25b4; Brand Identity: Temple Micah"
caption[7] = "&#x25b4; Brand Identity: Slipstream BPM"
caption[8] = "&#x25b4; Brand Identity: Smiths Architects"
caption[9] = "&#x25b4; Brand Identity: Proceed, Professional Decorative Painting Systems"
caption[10] = "&#x25b4; Brand Identity: Magic Circle Mime"
caption[11] = "&#x25b4; Brand Identity: GI Joe Stop Motion Film Festival";

random = Math.floor(Math.random() * banner.length);
document.getElementById ('randomImage').src = banner[random];
document.getElementById ('caption').innerHTML = caption[random];
}

