	// Type the number of images you are rotating (shared for both Left and Right images).
	
	// COMMON SHARE variables:
	NumberOfImagesToRotate = 5;
	// Specify the last part of image tags (shared for Left and Right images).
	LastPart = '_th.jpg" height="135" width="200"/>';
	
	
		
	// Rotate Left Cover Image
	// Specify the first part of the LEFT image tag.
	FirstPart_L = '<img src="images/photos/thumbs/Vette_';
		
	function printLeftImage() {
	var r_L = Math.ceil(Math.random() * NumberOfImagesToRotate);
	document.write(FirstPart_L + r_L + LastPart);
	}
	
	
	// Rotate Right Cover Image
	// Specify the first part of the RIGHT image tag.
	FirstPart_R = '<img src="images/photos/thumbs/WildLife_';
	
	function printRightImage() {
	var r_R = Math.ceil(Math.random() * NumberOfImagesToRotate);
	document.write(FirstPart_R + r_R + LastPart);
	}
