
var chosenImage=new Array();
chosenImage[0]="bigPic1.jpg";
chosenImage[1]="bigPic2.jpg";
chosenImage[2]="bigPic3.jpg";

var chosenAltCopy=new Array();
chosenAltCopy[0]="Joe Fuckm and Bekka";
chosenAltCopy[1]="Drunk And Happy Flier";
chosenAltCopy[2]="Fuckm";

var getRan=Math.floor(Math.random()*chosenImage.length);

function randomImage()
{
document.getElementById('randomImage').setAttribute('src','pics/'+chosenImage[getRan]);
document.getElementById('randomImage').setAttribute('alt',chosenAltCopy[getRan]);

} 
function swap(targetId){
if (document.getElementById)
{
	target = document.getElementById(targetId);
	if (target.style.display == "block")
	{
	  target.style.display = "none";
	}
	else
	{
  	  target.style.display = "block";
	}
}
}

