Index: trunk/grails-app/views/_adminmenubar.gsp
===================================================================
--- trunk/grails-app/views/_adminmenubar.gsp	(revision 104)
+++ trunk/grails-app/views/_adminmenubar.gsp	(revision 106)
@@ -9,6 +9,6 @@
     <g:ifAnyGranted role="ROLE_AppAdmin">
         <span class="appControlButton">
-            <g:link controller="appCore" action="admin">
-                Admin
+            <g:link controller="appCore" action="appAdmin">
+                AppAdmin
             </g:link>
         </span>
Index: trunk/grails-app/views/appCore/admin.gsp
===================================================================
--- trunk/grails-app/views/appCore/admin.gsp	(revision 104)
+++ 	(revision )
@@ -1,29 +1,0 @@
-<html>
-    <head>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <meta name="layout" content="main" />
-        <title>Admin</title>
-    </head>
-    <body>
-        <div class="nav">
-            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
-        </div>
-        <div class="body">
-            <h1>Application Admin</h1>
-            <div class="errors">
-                Warning!<br />
-                The pages bellow this line are for use by the application admin only and NOT for daily use.<br />
-                They allow direct administration of the back-end data, cascade deletion and updates may occur.<br />
-                The manager authorisation and pages should be used for normal daily use.<br />
-            </div>
-            <br/>
-            <div class="dialog">
-                <ul>
-                <g:each var="c" in="${grailsApplication.controllerClasses}">
-                        <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
-                </g:each>
-                </ul>
-            </div>
-        </div>
-    </body>
-</html>
Index: trunk/grails-app/views/appCore/appAdmin.gsp
===================================================================
--- trunk/grails-app/views/appCore/appAdmin.gsp	(revision 106)
+++ trunk/grails-app/views/appCore/appAdmin.gsp	(revision 106)
@@ -0,0 +1,29 @@
+<html>
+    <head>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+        <meta name="layout" content="main" />
+        <title>Admin</title>
+    </head>
+    <body>
+        <div class="nav">
+            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
+        </div>
+        <div class="body">
+            <h1>Application Admin</h1>
+            <div class="errors">
+                Warning!<br />
+                The pages bellow this line are for use by the application admin only and NOT for daily use.<br />
+                They allow direct administration of the back-end data, cascade deletion and updates may occur.<br />
+                The manager authorisation and pages should be used for normal daily use.<br />
+            </div>
+            <br/>
+            <div class="dialog">
+                <ul>
+                <g:each var="c" in="${grailsApplication.controllerClasses}">
+                        <li class="controller"><g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link></li>
+                </g:each>
+                </ul>
+            </div>
+        </div>
+    </body>
+</html>
Index: trunk/grails-app/views/layouts/main.gsp
===================================================================
--- trunk/grails-app/views/layouts/main.gsp	(revision 104)
+++ trunk/grails-app/views/layouts/main.gsp	(revision 106)
@@ -18,10 +18,4 @@
                     <img src="${createLinkTo(dir:'images',file:'spinner.gif')}" alt="Spinner" />
                 </div>	
-                <!-- <div class="logo" style="text-align: center; width: 980px; height: 220px">
-                <img src="${createLinkTo(dir:'images',file:'logo.png')}"
-                alt="gnuMims" />
-                <g:render template="/adminmenubar" />
-        
-                </div> -->
                 <div id="Header">
                     <a href="http://www.gnumims.org" id=HeaderLink></a>
Index: trunk/grails-app/views/login/auth.gsp
===================================================================
--- trunk/grails-app/views/login/auth.gsp	(revision 104)
+++ trunk/grails-app/views/login/auth.gsp	(revision 106)
@@ -46,5 +46,5 @@
 	<div id='login'>
         <h1>Welcome to gnuMims please log in</h1>
-        The demo users are "admin" and "user" both having password "pass"
+        The demo users are "manager" and "user" both having password "pass"
 
 		<div class='inner'>
@@ -62,9 +62,5 @@
 					<input type='password' class='text_' name='j_password' id='j_password' />
 				</p>
-<!--				<p>
-					<label for='remember_me'>Remember me</label>
-					<input type='checkbox' class='chk' name='_spring_security_remember_me' id='remember_me'
-					<g:if test='${hasCookie}'>checked='checked'</g:if> />
-				</p>-->
+
 				<p>
 					<input type='submit' value='Login' />
Index: trunk/grails-app/views/taskDetailed/create.gsp
===================================================================
--- trunk/grails-app/views/taskDetailed/create.gsp	(revision 104)
+++ trunk/grails-app/views/taskDetailed/create.gsp	(revision 106)
@@ -33,4 +33,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'description','errors')}">
                                     <input type="text"  style="width:450px" maxlength="75" id="description" name="description" value="${fieldValue(bean:taskInstance,field:'description')}"/>
+                                    <g:helpBalloon class="helpballoon" code="task.description" />
                                 </td>
                             </tr>
@@ -42,4 +43,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'comment','errors')}">
                                     <textarea  style="width:450px" rows="5" cols="40" name="comment">${fieldValue(bean:taskInstance, field:'comment')}</textarea>
+                                    <g:helpBalloon class="helpballoon" code="task.comment" />
                                 </td>
                             </tr> 
@@ -51,4 +53,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetStartDate','errors')}">
                                     <g:datePicker name="targetStartDate" value="${taskInstance?.targetStartDate}" precision="day"></g:datePicker>
+                                    <g:helpBalloon class="helpballoon" code="task.targetStartDate" />
                                 </td>
                             </tr> 
@@ -60,4 +63,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetCompletionDate','errors')}">
                                     <g:datePicker name="targetCompletionDate" value="${taskInstance?.targetCompletionDate}" precision="day"></g:datePicker>
+                                    <g:helpBalloon class="helpballoon" code="task.targetCompletionDate" />
                                 </td>
                             </tr> 
@@ -69,4 +73,5 @@
                                 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'leadPerson','errors')}">
                                     <g:select optionKey="id" from="${Person.list()}" name="leadPerson.id" value="${taskInstance?.leadPerson?.id}" ></g:select>
+                                    <g:helpBalloon code="task.leadPerson" />
                                 </td>
                             </tr> 
Index: trunk/grails-app/views/taskDetailed/list.gsp
===================================================================
--- trunk/grails-app/views/taskDetailed/list.gsp	(revision 104)
+++ trunk/grails-app/views/taskDetailed/list.gsp	(revision 106)
@@ -33,8 +33,6 @@
                    	    
                    	        <th>Task Status</th>
-            
-                            <th>Edit</th>
 
-                            <th>Show</th>
+                            <th></th>
                    	    
                         </tr>
@@ -56,7 +54,9 @@
                             <td>${fieldValue(bean:taskInstance, field:'taskStatus')}</td>
 
-                            <td><g:link action="edit" id="${taskInstance.id}">Edit</g:link></td>
-
-                            <td><g:link action="show" id="${taskInstance.id}">Show</g:link></td>
+                            <td>
+                                <g:link action="show" id="${taskInstance.id}">
+                                    <img  src="${createLinkTo(dir:'images/skin',file:'database_table.png')}" alt="Show" />
+                                </g:link>
+                            </td>
                         
                         </tr>
Index: trunk/grails-app/views/taskDetailed/show.gsp
===================================================================
--- trunk/grails-app/views/taskDetailed/show.gsp	(revision 104)
+++ trunk/grails-app/views/taskDetailed/show.gsp	(revision 106)
@@ -161,9 +161,9 @@
                     <thead>
                         <tr>
-                            <th style="color:Black">Comment</th>
-                            <th style="color:Black">Date Done</th>
-                            <th style="color:Black">Duration</th>
-                            <th style="color:Black">Entered By</th>
-                            <th style="color:Black">Edit</th>
+                            <th>Comment</th>
+                            <th>Date Done</th>
+                            <th>Duration</th>
+                            <th>Entered By</th>
+                            <th></th>
 
 <!--                            <g:sortableColumn property="comment" title="Comment" />
@@ -179,9 +179,13 @@
                             <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
                             
-                                <td width="65%">${entry.comment}</td>
+                                <td style="width:65%">${entry.comment}</td>
                                 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd MMM yyyy"/></td>
                                 <td>${entry.durationHour}:${entry.durationMinute}</td>
                                 <td>${entry.enteredBy}</td>
-                                <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td>
+                                <td>
+                                    <g:link controller="entryDetailed" action="edit" id="${entry.id}">
+                                        <img  src="${createLinkTo(dir:'images/skin',file:'database_edit.png')}" alt="Edit" />
+                                    </g:link>
+                                </td>
 
                         </g:if>
@@ -198,9 +202,9 @@
                     <thead>
                         <tr>
-                            <th style="color:Black">Comment</th>
-                            <th style="color:Black">Date Done</th>
-                            <th style="color:Black">Duration</th>
-                            <th style="color:Black">Entered By</th>
-                            <th style="color:Black">Edit</th>
+                            <th>Comment</th>
+                            <th>Date Done</th>
+                            <th>Duration</th>
+                            <th>Entered By</th>
+                            <th></th>
 <!--                            <g:sortableColumn property="commentW" title="Comment" />
                         
@@ -219,5 +223,9 @@
                                 <td>${entry.durationHour}:${entry.durationMinute}</td>
                                 <td>${entry.enteredBy}</td>
-                                <td><g:link controller="entryDetailed" action="edit" id="${entry.id}">Edit</g:link></td>
+                                <td>
+                                    <g:link controller="entryDetailed" action="edit" id="${entry.id}">
+                                        <img  src="${createLinkTo(dir:'images/skin',file:'database_edit.png')}" alt="Edit" />
+                                    </g:link>
+                                </td>
                         </g:if>
                         
@@ -234,5 +242,5 @@
                     <input type="hidden" name="taskInstance.id" value="${taskInstance?.id}" />
                     <span class="button">
-                        <g:actionSubmit value="Add Entry" action="create"  class="edit"/>
+                        <g:actionSubmit value="Add Entry" action="create"  class="add"/>
                     </span>
                 </g:form>
