 csna.module |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/csna.module b/csna.module
index 1039d1d..2cd67cf 100644
--- a/csna.module
+++ b/csna.module
@@ -251,7 +251,11 @@ function csna_providers($valid = FALSE) {
 function theme_csna_providers($providers) {
   $items = array();
   foreach ($providers as $provider_id => $provider) {
-    $items[] = l($provider['display_title'], 'csna/' . $provider_id, array('html' => TRUE));
+    $items[] =  array(
+      'data' => l($provider['display_title'], 'csna/' . $provider_id, array('html' => TRUE)),
+      'id'=>  $provider_id,
+    );
   }
-  return theme('item_list', array('items' => $items));
+
+  return  theme('item_list', array('items' => $items, 'attributes' => array('class' => 'csna-items')));
 }
