diff --git a/src/js/utilJS.js b/src/js/utilJS.js
index 4fb11072b17b8424d57e82602cee77ceca7a39f3..68ea053731c411abbff5926b7392be4481e452d1 100644
--- a/src/js/utilJS.js
+++ b/src/js/utilJS.js
@@ -552,7 +552,7 @@ window.budgetLine = function(category, title) {
 		profits = "$lastWeeksCashProfits";
 
 		return`<<if ${income}.${category} || ${expenses}.${category}>><tr>\
-		<td><div id="${category}" class= "accordion"> ${title}</div></td>\
+		<td>${title}</td>\
 		<td>\
 			<<if (${income}.${category}) > 0>>\
 				@@.yellowgreen;<<print cashFormat(${income}.${category})>>@@\ /*please don't put a plus sign in front of income, it's not done on a budget sheet.  Safe to assume money is money unless it's in parenthesis or with a - sign.*/
@@ -577,9 +577,7 @@ window.budgetLine = function(category, title) {
 				<<print cashFormat(${profits}.${category})>>\
 			<</if>>\
 		</td>\
-		</tr>\
-		<tr id="${category}accHidden" class="accHidden" style="display:none;">\<td>\Label</td>\<td>\@@.yellowgreen;<<print cashFormat(12)>>@@</td>\<td>\@@.red;-<<print cashFormat(7)>>@@</td>\<td>\@@.yellowgreen;<<print cashFormat(5)>>@@</td>\</tr>\
-		<</if>>`;
+		</tr><</if>>`;
 	}
 
 };