		var i = 1		var j = psArray.length-2;		var k = psArray.length-1;				// Write Table		document.write('<table width="100%" border="0" cellspacing="0" cellpadding="4">');		document.write('<tr><td class="MainTableHeader1">Initial Minimum<br>Deposit</td><td class="MainTableHeader1">Minimum Balance</td><td class="MainTableHeader1">Rate</td><td class="MainTableHeader1">APY</td></tr>');		var y = 0		for (var i = 1; i<= j; i++) {			if (y == 0) {				y = 1				document.write('<tr><td class="ColumnItem" align="left">' + psArray[i][1] + '&nbsp;</td><td class="ColumnItem" align="left">' + psArray[i][2] + '&nbsp;</td><td class="ColumnItem" align="left">' + psArray[i][3] + '&nbsp;</td><td class="ColumnItem" align="left">' + psArray[i][4] + '&nbsp;</td></tr>');				} else {				y = 0				document.write('<tr><td class="ColumnItemAlt" align="left">' + psArray[i][1] + '&nbsp;</td><td class="ColumnItemAlt" align="left">' + psArray[i][2] + '&nbsp;</td><td class="ColumnItemAlt" align="left">' + psArray[i][3] + '&nbsp;</td><td class="ColumnItemAlt" align="left">' + psArray[i][4] + '&nbsp;</td></tr>');			}		}		var today = new Date()		var todatMonth = today.getMonth() + 1		var todaystr = todatMonth + "/" + today.getDate() + "/" + today.getYear()		document.write('<tr><td colspan="4" align="left" class="smalltext">Information current as of: ' + today + '</td></tr>');		document.write('<tr><td colspan="4" align="left" class="smalltext">At our discretion, we may change the interest rate and annual percentage yield at any time on our savings, checkings, and IRA savings accounts. Account fees could reduce the earnings.</td></tr>');				document.write('</table>');
