Index: /EWD/ewdapps/so/pages/ewdTemplate.ewd
===================================================================
--- /EWD/ewdapps/so/pages/ewdTemplate.ewd	(revision 1285)
+++ /EWD/ewdapps/so/pages/ewdTemplate.ewd	(revision 1286)
@@ -36,5 +36,5 @@
             /*--------------------*/
 
-            #login, #content
+            #login, #content, #menu
             {
                 text-align: center;
@@ -207,5 +207,5 @@
             }
 
-            #submit
+            input[type="button"],input[type="submit"]
             {       
                 background-color: #ffb94b;
@@ -240,5 +240,5 @@
             }
 
-            #submit:hover,#submit:focus
+            input[type="button"]:hover,input[type="button"]:focus,input[type="submit"]:hover,input[type="submit"]:focus
             {       
                 background-color: #fddb6f;
@@ -251,5 +251,5 @@
             }   
 
-            #submit:active
+            input[type="button"]:active,input[type="submit"]:active
             {       
                 outline: none;
@@ -260,5 +260,5 @@
             }
 
-            #submit::-moz-focus-inner
+            input[type="button"]::-moz-focus-inner,input[type="submit"]::-moz-focus-inner
             {
               border: none;
Index: /EWD/ewdapps/so/pages/installedapps.ewd
===================================================================
--- /EWD/ewdapps/so/pages/installedapps.ewd	(revision 1286)
+++ /EWD/ewdapps/so/pages/installedapps.ewd	(revision 1286)
@@ -0,0 +1,19 @@
+<ewd:config pageType="ajax" isFirstPage="false" prePageScript="listEWDApps^ewdu">
+<a href="redir.ewd?nextapp=bb">Bed Board</a>
+<a href="redir.ewd?nextapp=ewd-fm">EWD Fileman</a>
+<ewd:ajaxOnLoad>
+    var x = function() {
+        apps = <?= #appsjson ?>;
+        var fs = document.getElementById("fs");
+        for (app in apps)
+        {
+            var input = document.createElement("input");
+            input.setAttribute('id',apps[app]);
+            input.setAttribute('type','button');
+            input.setAttribute('value',apps[app]);
+
+            fs.appendChild(input);
+        };
+    }();
+</ewd:ajaxOnLoad>
+
Index: /EWD/ewdapps/so/pages/menu.ewd
===================================================================
--- /EWD/ewdapps/so/pages/menu.ewd	(revision 1285)
+++ /EWD/ewdapps/so/pages/menu.ewd	(revision 1286)
@@ -1,15 +1,20 @@
-<ewd:config isFirstPage="false" prePageScript="SETUP^ewdu">
+<ewd:config isFirstPage="false">
 <!DOCTYPE html>
 <html>
     <head>
         <title>Menu System</title>
+        <script type="text/javascript">
+            var ln = function()
+            {
+                EWD.ajax.getPage({"page": "installedapps", "targetId": "intro"});
+            };
+        </script>
     </head>
-    <body>
+    <body onload="ln()">
         <div id="intro">
-            <p>Where do you want to go?</p>
         </div>
        <form id="menu" method="post" action="ewd">
             <h1>Menu</h1>
-            <fieldset id="menu">
+            <fieldset id="fs">
                 <input type="submit" name="Submit" id="submit" value="Bed Board" action="sss^ewdu">
                 <a href="">Help</a>
Index: /EWD/ewdapps/so/pages/redir.ewd
===================================================================
--- /EWD/ewdapps/so/pages/redir.ewd	(revision 1286)
+++ /EWD/ewdapps/so/pages/redir.ewd	(revision 1286)
@@ -0,0 +1,1 @@
+<ewd:config isFirstPage="false" prePageScript="redir^ewdu">
