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>
