


/* Runs Random Number Between 1-3 */
var randomSelect = 3;
var loadThis;
loadThis = Math.ceil(Math.random()*randomSelect);	

function getMessage() {
	var theImage = '';	
	
	if (loadThis == '1') {		
		theImage += '<img src="/img/fp_growing_plant.jpg" width="174" height="161" alt="Growing Plant" border="0">';				
	}
	if (loadThis == '2') {		
		theImage += '<img src="/img/fp_growing_plant.jpg" width="174" height="161" alt="Growing Plant" border="0">';		
	}
	if (loadThis == '3') {		
		theImage += '<img src="/img/fp_growing_plant.jpg" width="174" height="161" alt="Growing Plant" border="0">';				
	}
	
	return theImage;
}

			