// JavaScript Document

function ChangeImageAndText(imageName, newText){

		// Change out the html in the contentArea div
		document.getElementById('contentArea').innerHTML = '<img src="'+imageName+'" width="728" height="394" alt="" />';
		
		// Change out the html in the text div
		document.getElementById('imageCaption').innerHTML = newText;
	
}