--- adminimal_admin_menu/adminimal_admin_menu.module	(revision 5dc4536eb9586dd139307ad042e8fbb77173f360)
+++ adminimal_admin_menu/adminimal_admin_menu.module	(revision )
@@ -32,6 +32,7 @@
   }
   $path = drupal_get_path('module', 'adminimal_admin_menu');
 	$load_slicknav = variable_get('adminimal_admin_menu_slicknav', TRUE );
+	$load_jQuery = variable_get('adminimal_admin_menu_jquery', TRUE );

   // Attach the CSS and JavaScript assets.
   drupal_add_css($path . '/adminimal_admin_menu.css');
@@ -58,13 +59,18 @@
       ));
 	}

-  // Check if slicknav must be loaded.
-  if ($load_slicknav) {
+	// Check if both slicknav and custom jQuery must be loaded.
+	if ($load_slicknav and $load_jQuery) {
+	  drupal_add_js($path . '/js/jquery.min.js', array( 'type' => 'file', 'scope' => 'header', 'weight' => 888 ));
-    drupal_add_js($path . '/js/slicknav/jquery-no-conflict.slicknav.js', array( 'type' => 'file', 'scope' => 'header', 'weight' => 888 ));
+		drupal_add_js($path . '/js/slicknav/jquery-no-conflict.slicknav.js', array( 'type' => 'file', 'scope' => 'header', 'weight' => 888 ));
+		drupal_add_css($path . '/js/slicknav/slicknav.css');
+	}
+	elseif ($load_slicknav and !$load_jQuery) {
+		drupal_add_js($path . '/js/slicknav/jquery.slicknav.js', array( 'type' => 'file', 'scope' => 'header', 'weight' => 888 ));
-    drupal_add_css($path . '/js/slicknav/slicknav.css');
-  }
+		drupal_add_css($path . '/js/slicknav/slicknav.css');
+	}

-  drupal_add_js($path . '/js/adminimal_admin_menu.js', array( 'type' => 'file', 'scope' => 'header', 'weight' => 888 ));
+	drupal_add_js($path . '/js/adminimal_admin_menu.js', array( 'type' => 'file', 'scope' => 'header', 'weight' => 888 ));

   if (!isset($page['page_bottom']['admin_menu'])) {
     return;
@@ -150,19 +156,19 @@
 	if (variable_get('adminimal_admin_menu_slicknav', 'TRUE')) {
 	  // Prepare the responsive menu and Join the Icon menu with the administration menu.
 	  $responsivemenu = array_merge($content['icon'], $content['menu']);
-
+
 	  // Give it ID to target it later with js and css.
 	  $responsivemenu['#wrapper_attributes']['id'] = 'admin-menu-menu-responsive';
-
+
 	  // Move the icon menu to the top.
 	  $responsivemenu['icon']['#weight'] = '-100';
-
+
 	  // Change the link title to Administration.
 	  $responsivemenu['admin/index']['#title'] = t('Administration');
-
+
 	  // Bind the responsive menu the the content varable so it can be rendered.
 	  $content['responsive-menu'] = $responsivemenu;
-
+
 	  // Create the responsive shortucts.
 	  $content['responsive']['shortcuts'] = array(
 	    '#prefix' => '<div id="admin-menu-shortcuts-responsive">',
