Creating dinamics tabs (JQUERY + JSTL)

Creating dinamics tabs (JQUERY + JSTL)

hi all ! Im new here...
 
Im following the tabs creation from the JQUERY examples and Im having problems with creating dinamics tabs:
 
My code so far is:
 
  1. <div id="tabs">
       <c:forEach var="Agenda" items="${sessionScope.Agenda}">
             
              <ul>
              <li><a href="${Agenda}"><span>${Agenda}</span></a></li> <!-- make the ref -->
              </ul>  




  2.            <div id="${Agenda}"> <!-- where the ref is pointing to... -->
  3. CODE FOR THE TABS HERE !
  4.             </div>
  5.      </c:forEach>                      
  6. </div>
    Any help is appreciated.
    Thanks in advance!