diff --git a/src/pregmod/manageCorporation.tw b/src/pregmod/manageCorporation.tw
index 0d38e39f5178e52eed764f68c162f2078c21b3a1..22dc38787c5a6183a7f5645543a13f1aad32966d 100644
--- a/src/pregmod/manageCorporation.tw
+++ b/src/pregmod/manageCorporation.tw
@@ -1385,25 +1385,6 @@ __Shares__
 		<br>The corporation can buyback some of the public shares. [[Buyback 1000|Manage Corporation][$corpCash -= corpSharePrice(-1000), $publicShares -= 1000]]
 	<</if>>
 <</if>>
-
-/* Splitting shares when they're unwieldy */
-<<set _splitFeeInitial = 10000>>
-<<set _singleSplitInitial = 0.01>>
-<<set _splitFeeValue = _splitFeeInitial - Math.floor((_splitFeeInitial * ($PC.trading / 100.0) / 2.0) / 1000) * 1000>>
-<<set _singleSplitValue = _singleSplitInitial>>
-<<set _singleSplitTotal = _singleSplitValue * $publicShares * $personalShares + _splitFeeValue>>
-    <br>The corporation can perform a 2-for-1 Stock Split for @@.red;<<= cashFormat(_singleSplitValue) >>@@ per share and a market fee of @@.red;<<= cashFormat(_splitFeeValue)>>@@ for a total of @@.red;<<= cashFormat(_singleSplitTotal)>>@@. 
-<<if _splitFeeValue < _splitFeeInitial>>
-    //You negotiated lower fees due to your @@.springgreen;business acumen@@.//
-<</if>>
-<<if $corpSpecTimer > 0>>
-//The corporation has restructured too recently.//
-<<elseif $corpCash > _singleSplitTotal>>
-[[Split Shares|Manage Corporation][$corpCash -= _singleSplitTotal, $publicShares *= 2, $personalShares *= 2, $corpSpecTimer=1]]
-<<else>>
-//The corporation cannot afford the fees.//
-<</if>>
-
 <<if $cash > corpSharePrice(1000)>>
 	<br>The corporation can issue 1000 shares to you. [[Issue 1000|Manage Corporation][cashX(forceNeg(corpSharePrice(1000)), "stocksTraded"), $corpCash += corpSharePrice(1000), $personalShares += 1000]]
 <</if>>
@@ -1416,7 +1397,62 @@ __Shares__
 <<if $cash > corpSharePrice() && $publicShares >= 1000>>
 	<br>You can buy some shares from the stock market [[Buy 1000|Manage Corporation][cashX(forceNeg(corpSharePrice()), "stocksTraded"), $personalShares += 1000, $publicShares -= 1000]]
 <</if>>
+<br>__Stock Split__
 
+/* Splitting shares when they're unwieldy */
+<<set _splitFeeInitial = 10000>>
+<<set _splitFeeValue = _splitFeeInitial - Math.floor((_splitFeeInitial * ($PC.trading / 100.0) / 2.0) / 1000) * 1000>>
+<<set _splitStockConstants = [
+{
+    'newStocks': 3,
+    'oldStocks': 2,
+    'weeks': 1,
+    'cost': 7.5
+},
+{
+    'newStocks': 2,
+    'weeks': 1,
+    'cost': 10
+},
+{
+    'newStocks': 3,
+    'weeks': 2,
+    'cost': 12.5
+},
+{
+    'newStocks': 4,
+    'weeks': 3,
+    'cost': 15
+},
+]>>
+
+    <br>The corporation can perform a stock split increase the number of stocks while maintaining owned value. This requires paying a market fee of @@.red;<<= cashFormat(_splitFeeValue)>>@@ plus a per-share fee depending on the type of split being done.
+    <<if _splitFeeValue < _splitFeeInitial>>
+        //You negotiated lower fees due to your @@.springgreen;business acumen@@.//
+    <</if>>
+<<if $corpSpecTimer > 0>>
+    <br>//The corporation has restructured too recently.//
+<</if>>
+<ul>
+<<for _stockType range _splitStockConstants>>
+    <<set _splitInitial = _stockType['cost']>>
+    <<set _splitValue = _splitInitial>>
+    <<set _splitDenom = _stockType['oldStocks'] || 1>>
+    <<set _splitNumerator = _stockType['newStocks'] || 1>>
+    <<set _splitMultiplier = _splitNumerator / _splitDenom>>
+    <<set _splitTotal = _splitValue * ($publicShares + $personalShares) + _splitFeeValue>>
+    <<set _splitWeek = _stockType['weeks']>>
+    <li><<= _splitNumerator >>-for-<<= _splitDenom>> <<if _splitDenom > _splitNumerator>>inverse<</if>> stock split at @@.red;<<= cashFormat(_splitValue) >>@@ per share. Including market fees, this will cost the corporation a total of @@.red;<<= cashFormat(_splitTotal)>>@@.
+    <<if $corpSpecTimer == 0>>
+        <<if $corpCash > _singleSplitTotal>>
+        <<= "[[Split Shares|Manage Corporation][$corpCash -= " + _singleSplitTotal + ", $publicShares *= " + _splitMultiplier + ", $personalShares *= " + _splitMultiplier + ", $corpSpecTimer="+_splitWeek+"]]" >>
+        <<else>>
+        //The corporation cannot afford the fees.//
+        <</if>>
+    <</if>>
+    </li>
+<</for>>
+</ul>
 <br><br>
 
 __Slave specialization__