diff --git a/ShareThisForm.js b/ShareThisForm.js
index fdc734e..d187e5c 100644
--- a/ShareThisForm.js
+++ b/ShareThisForm.js
@@ -156,4 +156,8 @@
   jQuery(document).ready(drupal_st.addEvents);
   // After it's all done, hide the text field for the service picker so that no one messes up the data.
   jQuery(document).ready(drupal_st.setupServiceText);
+
+
+  // Creating a copy inside windows object so it available globally.
+  window.drupal_st = drupal_st;
 })();
diff --git a/sharethis.admin.inc b/sharethis.admin.inc
index 4944761..5967b8f 100644
--- a/sharethis.admin.inc
+++ b/sharethis.admin.inc
@@ -63,7 +63,7 @@ function sharethis_configuration_form($form, &$form_state) {
     '#suffix' => '</div>',
   );
   $form['options']['sharethis_service_option'] = array(
-    '#description' => t("<b>Add</b> a service by selecting it on the right and clicking the <i>left arrow</i>.  <b>Remove</b> it by clicking the <i>right arrow</i>.<br /><b>Change the order</b> of services under \'Selected Services\' by using the <i>up</i> and <i>down</i> arrows."),
+    '#description' => t('<b>Add</b> a service by selecting it on the right and clicking the <i>left arrow</i>.  <b>Remove</b> it by clicking the <i>right arrow</i>.<br /><b>Change the order</b> of services under \'Selected Services\' by using the <i>up</i> and <i>down</i> arrows.'),
     '#required' => TRUE,
     '#type' => 'textfield',
     '#prefix' => '<div>',
diff --git a/stlib_picker.js b/stlib_picker.js
index 4b1cfdd..b05f8f2 100644
--- a/stlib_picker.js
+++ b/stlib_picker.js
@@ -137,4 +137,7 @@
     // Save the options (and the picker) globally.
     stlib_picker.pickerList[jQElement.attr('id')] = optionsArray;
   };
+
+  // Creating a copy inside windows object so it available globally.
+  window.stlib_picker = stlib_picker;
 })();
