// JavaScript Document


// random splash generator

function randomSplash()

{
var splashImage=new Array()

// location of images in this array
splashImage[1]="images/print_01.jpg";
splashImage[2]="images/print_02.jpg";
splashImage[3]="images/print_03.jpg";
splashImage[4]="images/print_04.jpg";
splashImage[5]="images/print_05.jpg";
splashImage[6]="images/logo_01.jpg";
splashImage[7]="images/logo_02.jpg";
splashImage[8]="images/logo_03.jpg";
splashImage[9]="images/logo_04.jpg";
splashImage[10]="images/logo_05.jpg";

var splashCaption=new Array()

// captions
splashCaption[1]="Overcoming Going Under Poster";
splashCaption[2]="Age Of Kali Poster";
splashCaption[3]="The Dance of Angels Poster";
splashCaption[4]="AWEA Stationary System";
splashCaption[5]="Batterhead Down CD";
splashCaption[6]="The Free Project Logo System";
splashCaption[7]="Kindred Spirits Logo";
splashCaption[8]="American Wind Energy Association Logo";
splashCaption[9]="Franks Girl Productions Logo";
splashCaption[10]="Monkeyduck.com Logo";

var getRan=Math.floor(Math.random()*splashImage.length)
if (getRan==0)
getRan=1

document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"John Brosio\" title=\"John Brosio\" width=\"1080\" \/>');

document.write('<p>'+splashCaption[getRan]+'<br \/>');
document.write('View more images in <a href=\"what.html\">what<\/a><\/p>');
}


function randomSplash3()

{
var splashImage=new Array()

// location of images in this array
splashImage[1]="images/jbr_banner.png";
splashImage[2]="images/jbr_banner.png";


var getRan=Math.floor(Math.random()*splashImage.length)
if (getRan==0)
getRan=1

document.write('<p><img src=\"'+splashImage[getRan]+'\" alt=\"johnbrosio.com\" title=\"johnbrosio.com\" width=\"1080\" \/>');

}


// swap image and caption 

function swapPhoto(photoSRC,theTitle,theSize,theYear,theCaption) {

	var displayedTitle = document.getElementById("title");
	var displayedPlace = document.getElementById("size");
	var displayedWork = document.getElementById("year");
	var displayedCaption = document.getElementById("caption");
	
	displayedTitle.firstChild.nodeValue = theTitle;
	displayedPlace.firstChild.nodeValue = theSize;
	displayedWork.firstChild.nodeValue = theYear;
	displayedCaption.firstChild.nodeValue = theCaption;

    document.images.imgPhoto.src = "images/" + photoSRC;
}

