diff --git locales/amazon_store.locale.ca.inc locales/amazon_store.locale.ca.inc
index 64d3308..13b80f1 100644
--- locales/amazon_store.locale.ca.inc
+++ locales/amazon_store.locale.ca.inc
@@ -1,6 +1,6 @@
 <?php
 
-function amazon_store_locale() {
+function _amazon_store_locale() {
 
 
   $locale = array(
diff --git locales/amazon_store.locale.de.inc locales/amazon_store.locale.de.inc
index 9d7dee0..32247b1 100644
--- locales/amazon_store.locale.de.inc
+++ locales/amazon_store.locale.de.inc
@@ -10,7 +10,7 @@
  * http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/index.html?APPNDX_SortValuesArticle.html
  */
 
-function amazon_store_locale() {
+function _amazon_store_locale() {
   $locale = array(
 'DE' => array(
    'All' => array('friendly_name' => t('All'),
diff --git locales/amazon_store.locale.fr.inc locales/amazon_store.locale.fr.inc
index 8477ff1..4662bda 100644
--- locales/amazon_store.locale.fr.inc
+++ locales/amazon_store.locale.fr.inc
@@ -1,7 +1,7 @@
 <?php
 
 
-function amazon_store_locale() {
+function _amazon_store_locale() {
 
   $locale = array('FR' => array(
       'All' => array('friendly_name' => t('All'),
diff --git locales/amazon_store.locale.jp.inc locales/amazon_store.locale.jp.inc
index 295fc07..0766dc5 100644
--- locales/amazon_store.locale.jp.inc
+++ locales/amazon_store.locale.jp.inc
@@ -1,7 +1,7 @@
 <?php
 
 
-function amazon_store_locale() {
+function _amazon_store_locale() {
 
 $locale = array('JP' => array(
   'All' => array('friendly_name' => t('All'),
diff --git locales/amazon_store.locale.uk.inc locales/amazon_store.locale.uk.inc
index dc86b9b..208f0d7 100644
--- locales/amazon_store.locale.uk.inc
+++ locales/amazon_store.locale.uk.inc
@@ -12,7 +12,7 @@
  * No parameters_allowed or sorts information available for Sporting Goods or Tools - used US Info
  */
 
- function amazon_store_locale() {
+ function _amazon_store_locale() {
   $locale = array('UK' => array(
     'All' => array('friendly_name' => t('All'),
   'BrowseNode' => 2000,
diff --git locales/amazon_store.locale.us.inc locales/amazon_store.locale.us.inc
index 3ca3e69..f84a7fc 100644
--- locales/amazon_store.locale.us.inc
+++ locales/amazon_store.locale.us.inc
@@ -1,6 +1,6 @@
 <?php
 
-function amazon_store_locale() {
+function _amazon_store_locale() {
 
 $locale = array( 'US' => array(
   'All' => array('friendly_name' => t('All'),
diff --git searchindexes.inc searchindexes.inc
index 129ad4b..171c9d1 100644
--- searchindexes.inc
+++ searchindexes.inc
@@ -528,7 +528,7 @@ class SearchIndexes {
    */
   function __construct($locale) {
     include_once(strtolower("locales/amazon_store.locale.$locale.inc"));
-    $this->data = amazon_store_locale();
+    $this->data = _amazon_store_locale();
 
     if (!empty($this->data[$locale])) {
       $error_level = error_reporting(0);
