diff --git a/interface/web/client/lib/module.conf.php b/interface/web/client/lib/module.conf.php
index 78b825b429e8c0242d94029146d3f21e7122f89b..c6fea586e0f2d4aa30526bcfb46d6189dde34ed8 100644
--- a/interface/web/client/lib/module.conf.php
+++ b/interface/web/client/lib/module.conf.php
@@ -13,16 +13,19 @@ $module["tab_width"]    = '';
 
 $items[] = array( 'title' 	=> "Add Client",
 				  'target' 	=> 'content',
-				  'link'	=> 'client/client_edit.php');
+				  'link'	=> 'client/client_edit.php',
+				  'html_id' => 'client_add');
 
 $items[] = array( 'title' 	=> "Edit Client",
 				  'target' 	=> 'content',
-				  'link'	=> 'client/client_list.php');
+				  'link'	=> 'client/client_list.php',
+				  'html_id' => 'client_list');
 
 if($_SESSION["s"]["user"]["typ"] == 'admin'){
 	$items[] = array( 'title' 	=> "Edit Client-Templates",
 					  'target' 	=> 'content',
-					  'link'	=> 'client/client_template_list.php');
+					  'link'	=> 'client/client_template_list.php',
+					  'html_id' => 'client_template_list');
 }
 
 $module["nav"][] = array(	'title'	=> 'Clients',
@@ -36,11 +39,13 @@ if($_SESSION["s"]["user"]["typ"] == 'admin'){
 
 $items[] = array( 'title' 	=> "Add Reseller",
 				  'target' 	=> 'content',
-				  'link'	=> 'client/reseller_edit.php');
+				  'link'	=> 'client/reseller_edit.php',
+				  'html_id' => 'reseller_add');
 
 $items[] = array( 'title' 	=> "Edit Reseller",
 				  'target' 	=> 'content',
-				  'link'	=> 'client/reseller_list.php');
+				  'link'	=> 'client/reseller_list.php',
+				  'html_id' => 'reseller_list');
 
 $module["nav"][] = array(	'title'	=> 'Resellers',
 							'open' 	=> 1,
@@ -50,14 +55,4 @@ $module["nav"][] = array(	'title'	=> 'Resellers',
 
 
 
-
-
-
-
-
-
-
-
-
-
 ?>
\ No newline at end of file