Index: trunk/grails-app/controllers/AppCoreController.groovy
===================================================================
--- trunk/grails-app/controllers/AppCoreController.groovy	(revision 706)
+++ trunk/grails-app/controllers/AppCoreController.groovy	(revision 707)
@@ -67,8 +67,24 @@
         def sections = Section.findAllByIsActive(true).sort { p1, p2 -> p1.name.compareToIgnoreCase(p2.name) }
 
+        def showTab = [:]
+        switch (params.showTab) {
+            case "showReportsTab":
+                showTab.reports =  new String("true")
+                break
+            case "showOptionsTab":
+                showTab.Options =  new String("true")
+                break
+            case "showAboutTab":
+                showTab.about =  new String("true")
+                break
+            default:
+                showTab.quickLinks = new String("true")
+        }
+
         return [grailsVersion: grailsVersion,
                     applicationString: applicationString,
                     plugins: plugins,
-                    sections: sections]
+                    sections: sections,
+                    showTab: showTab]
     }
 
Index: trunk/grails-app/views/appCore/start.gsp
===================================================================
--- trunk/grails-app/views/appCore/start.gsp	(revision 706)
+++ trunk/grails-app/views/appCore/start.gsp	(revision 707)
@@ -23,8 +23,8 @@
 
                 <richui:tabLabels>
-                    <richui:tabLabel selected="true" title="Quick Links" />
-                    <richui:tabLabel selected="${0}" title="Reports" />
-                    <richui:tabLabel selected="${0}" title="Options" />
-                    <richui:tabLabel selected="${0}" title="About" />
+                    <richui:tabLabel selected="${showTab.quickLinks}" title="Quick Links" />
+                    <richui:tabLabel selected="${showTab.reports}" title="Reports" />
+                    <richui:tabLabel selected="${showTab.Options}" title="Options" />
+                    <richui:tabLabel selected="${showTab.about}" title="About" />
                 </richui:tabLabels>
 
