// User Editable region - Change announcement info here.

// The <br> in the text forces a carriage return.
// If using hyphenation with the ' character, precede it with a \.  Example Michele\'s
// Keep the text for each one on one line.
var aContent = new Array();
aContent[0] = 'We are pleased to announce the addition of Benson aluminum and Henderson steel bodies to our truck body offering. Call us for additional information on these high-quality truck bodies.'
aContent[1] = ''
aContent[2] = ''
// End user editable region.

// Do not alter anything below this line.
function loadTable() {
	var divStr='<table border="0" cellpadding="0" style="border-collapse: collapse" height="180">'
	divStr += '<tr><td align="center"><font face="Tahoma" size="1" color="#FFFFFF">----------------------------------</font></td></tr>'
	for (var i=0;i<3;i++) {
		divStr += '<tr><td valign="top"><font face="Tahoma" size="1" color="#333333">' + aContent[i] + '</font></td></tr>'
		divStr += '<tr><td align="center"><font face="Tahoma" size="1" color="#FFFFFF">----------------------------------</font></td></tr>'
	}
	divStr += '</table>'
	document.getElementById('aTable').innerHTML = divStr;
	
}
