NewsModules_RichSnippet - Version 0.1.0

Version Notes

Adds metadata to the products and breadcrumbs to improve indexing on search engines.

Download this release

Release Info

Developer Alessandro Lioce
Extension NewsModules_RichSnippet
Version 0.1.0
Comparing to
See all releases


Version 0.1.0

Files changed (19) hide show
  1. app/code/community/NewsModules/RichSnippet/Helper/Copia di Data.php +71 -0
  2. app/code/community/NewsModules/RichSnippet/Helper/Data.php +33 -0
  3. app/code/community/NewsModules/RichSnippet/Model/Entity/Attribute/Source/Category.php +18671 -0
  4. app/code/community/NewsModules/RichSnippet/etc/config.xml +46 -0
  5. app/code/community/NewsModules/RichSnippet/sql/richsnippet_setup/mysql4-install-0.1.0.php +28 -0
  6. app/design/adminhtml/default/default/layout/richsnippet.xml +10 -0
  7. app/design/frontend/base/default/layout/richsnippet.xml +51 -0
  8. app/design/frontend/base/default/template/richsnippet/bundle/catalog/product/price.phtml +19 -0
  9. app/design/frontend/base/default/template/richsnippet/catalog/product/price.phtml +15 -0
  10. app/design/frontend/base/default/template/richsnippet/catalog/product/view.phtml +13 -0
  11. app/design/frontend/base/default/template/richsnippet/catalog/product/view/media.phtml +5 -0
  12. app/design/frontend/base/default/template/richsnippet/catalog/product/view/type/availability/default.phtml +6 -0
  13. app/design/frontend/base/default/template/richsnippet/catalog/product/view/type/availability/grouped.phtml +10 -0
  14. app/design/frontend/base/default/template/richsnippet/page/html/breadcrumbs.phtml +46 -0
  15. app/design/frontend/base/default/template/richsnippet/product.phtml +3 -0
  16. app/design/frontend/base/default/template/richsnippet/product/offer.phtml +5 -0
  17. app/etc/modules/NewsModules_RichSnippet.xml +12 -0
  18. js/newsmodules/richsnippet/adminhtml/catalog/category.js +45 -0
  19. js/newsmodules/richsnippet/jquery-1.11.1.min.js +2 -0
app/code/community/NewsModules/RichSnippet/Helper/Copia di Data.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class NewsModules_RichSnippet_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+ /*
5
+ protected function getVersionPath($template)
6
+ {
7
+ $version = Mage::getVersion();
8
+ $path = '';
9
+
10
+ / *
11
+ if (version_compare($version, '1.6.0.0', '>=') and version_compare($version, '1.6.1.0', '<')) $path = '1_6_0_0';
12
+ else if (version_compare($version, '1.6.1.0', '>=') and version_compare($version, '1.7.0.0', '<')) $path = '1_6_1_0';
13
+ else if (version_compare($version, '1.7.0.0', '>=') and version_compare($version, '1.8.0.0', '<')) $path = '1_7_0_0';
14
+ else if (version_compare($version, '1.8.0.0', '>=') and version_compare($version, '1.9.0.0', '<')) $path = '1_8_0_0';
15
+ else
16
+ * /
17
+ if (version_compare($version, '1.9.0.0', '>=') and version_compare($version, '1.9.0.1', '<=')) $path = '1_9_0_0';
18
+
19
+ if (!empty($path)) return 'richsnippet/'.$path.'/'.$template;
20
+ else return $template;
21
+ }
22
+
23
+ public function getPriceTemplate($blockName, $productType)
24
+ {
25
+ $template = 'catalog/product/price.phtml';
26
+ if ($productType == 'bundle') $template = 'bundle/catalog/product/price.phtml';
27
+
28
+ $template = $this->getVersionPath($template);
29
+
30
+ return $template;
31
+ }
32
+
33
+ public function getTemplate($blockName)
34
+ {
35
+ $block = Mage::app()->getLayout()->getBlock($blockName);
36
+ $template = $this->getVersionPath($block->getTemplate());
37
+
38
+ return $template;
39
+ }
40
+ */
41
+
42
+ public function getCategory()
43
+ {
44
+ $_category = Mage::registry('current_category');
45
+ if ($_category)
46
+ {
47
+ $value = $_category->getData('richsnippet_category');
48
+ if ($value > 1)
49
+ {
50
+ $text = Mage::getModel('richsnippet/entity_attribute_source_category')->getOptionText($value);
51
+ return $text;
52
+ }
53
+ }
54
+ return false;
55
+ }
56
+
57
+ public function getBrand()
58
+ {
59
+ $_product = Mage::registry('current_product');
60
+ if ($_product)
61
+ {
62
+ $value = $_product->getManufacturer();
63
+ if ($value)
64
+ {
65
+ $text = $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product);
66
+ return $text;
67
+ }
68
+ }
69
+ return false;
70
+ }
71
+ }
app/code/community/NewsModules/RichSnippet/Helper/Data.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class NewsModules_RichSnippet_Helper_Data extends Mage_Core_Helper_Abstract
3
+ {
4
+ public function getCategory()
5
+ {
6
+ $_category = Mage::registry('current_category');
7
+ if ($_category)
8
+ {
9
+ $value = $_category->getData('richsnippet_category');
10
+ if ($value > 1)
11
+ {
12
+ $text = Mage::getModel('richsnippet/entity_attribute_source_category')->getOptionText($value);
13
+ return $text;
14
+ }
15
+ }
16
+ return false;
17
+ }
18
+
19
+ public function getBrand()
20
+ {
21
+ $_product = Mage::registry('current_product');
22
+ if ($_product)
23
+ {
24
+ $value = $_product->getManufacturer();
25
+ if ($value)
26
+ {
27
+ $text = $_product->getResource()->getAttribute('manufacturer')->getFrontend()->getValue($_product);
28
+ return $text;
29
+ }
30
+ }
31
+ return false;
32
+ }
33
+ }
app/code/community/NewsModules/RichSnippet/Model/Entity/Attribute/Source/Category.php ADDED
@@ -0,0 +1,18671 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class NewsModules_RichSnippet_Model_Entity_Attribute_Source_Category extends Mage_Eav_Model_Entity_Attribute_Source_Abstract
3
+ {
4
+ public function getAllOptions()
5
+ {
6
+ if (is_null($this->_options))
7
+ {
8
+ $this->_options = array(
9
+ array(
10
+ 'label' => Mage::helper('richsnippet')->__('-'),
11
+ 'value' => 1
12
+ ),
13
+ array(
14
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies"),
15
+ 'value' => 2
16
+ ),array(
17
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Live Animals"),
18
+ 'value' => 3
19
+ ),array(
20
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies"),
21
+ 'value' => 4
22
+ ),array(
23
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies"),
24
+ 'value' => 5
25
+ ),array(
26
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories"),
27
+ 'value' => 6
28
+ ),array(
29
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cage Accessories > Bird Cage Food & Water Dishes"),
30
+ 'value' => 7
31
+ ),array(
32
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Cages & Stands"),
33
+ 'value' => 8
34
+ ),array(
35
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Food"),
36
+ 'value' => 9
37
+ ),array(
38
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Gyms & Playstands"),
39
+ 'value' => 10
40
+ ),array(
41
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Ladders & Perches"),
42
+ 'value' => 11
43
+ ),array(
44
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Toys"),
45
+ 'value' => 12
46
+ ),array(
47
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Bird Supplies > Bird Treats"),
48
+ 'value' => 13
49
+ ),array(
50
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies"),
51
+ 'value' => 14
52
+ ),array(
53
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Apparel"),
54
+ 'value' => 15
55
+ ),array(
56
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Beds"),
57
+ 'value' => 16
58
+ ),array(
59
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Food"),
60
+ 'value' => 17
61
+ ),array(
62
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Furniture"),
63
+ 'value' => 18
64
+ ),array(
65
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter"),
66
+ 'value' => 19
67
+ ),array(
68
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Box Mats"),
69
+ 'value' => 20
70
+ ),array(
71
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Litter Boxes"),
72
+ 'value' => 21
73
+ ),array(
74
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Toys"),
75
+ 'value' => 22
76
+ ),array(
77
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Cat Supplies > Cat Treats"),
78
+ 'value' => 23
79
+ ),array(
80
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies"),
81
+ 'value' => 24
82
+ ),array(
83
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Apparel"),
84
+ 'value' => 25
85
+ ),array(
86
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Beds"),
87
+ 'value' => 26
88
+ ),array(
89
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Diaper Pads & Liners"),
90
+ 'value' => 27
91
+ ),array(
92
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Food"),
93
+ 'value' => 28
94
+ ),array(
95
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Houses"),
96
+ 'value' => 29
97
+ ),array(
98
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Kennel & Run Accessories"),
99
+ 'value' => 30
100
+ ),array(
101
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Kennels & Runs"),
102
+ 'value' => 31
103
+ ),array(
104
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Toys"),
105
+ 'value' => 32
106
+ ),array(
107
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Dog Supplies > Dog Treats"),
108
+ 'value' => 33
109
+ ),array(
110
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies"),
111
+ 'value' => 34
112
+ ),array(
113
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Air Pumps"),
114
+ 'value' => 35
115
+ ),array(
116
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Decor"),
117
+ 'value' => 36
118
+ ),array(
119
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Decor > Artificial Aquarium Plants"),
120
+ 'value' => 37
121
+ ),array(
122
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Filters"),
123
+ 'value' => 38
124
+ ),array(
125
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Gravel & Substrates"),
126
+ 'value' => 39
127
+ ),array(
128
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Heating"),
129
+ 'value' => 40
130
+ ),array(
131
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Lighting"),
132
+ 'value' => 41
133
+ ),array(
134
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Overflow Boxes"),
135
+ 'value' => 42
136
+ ),array(
137
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Stands"),
138
+ 'value' => 43
139
+ ),array(
140
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Water Pumps"),
141
+ 'value' => 44
142
+ ),array(
143
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquarium Water Treatments"),
144
+ 'value' => 45
145
+ ),array(
146
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquariums"),
147
+ 'value' => 46
148
+ ),array(
149
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Aquatic Plant Fertilizers"),
150
+ 'value' => 47
151
+ ),array(
152
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Fish Feeders"),
153
+ 'value' => 48
154
+ ),array(
155
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Fish Supplies > Fish Food"),
156
+ 'value' => 49
157
+ ),array(
158
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Agility Equipment"),
159
+ 'value' => 50
160
+ ),array(
161
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Apparel Hangers"),
162
+ 'value' => 51
163
+ ),array(
164
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Attractant"),
165
+ 'value' => 52
166
+ ),array(
167
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Bells & Charms"),
168
+ 'value' => 53
169
+ ),array(
170
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors"),
171
+ 'value' => 54
172
+ ),array(
173
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Glucose Meters"),
174
+ 'value' => 55
175
+ ),array(
176
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Pedometers"),
177
+ 'value' => 56
178
+ ),array(
179
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Scales"),
180
+ 'value' => 57
181
+ ),array(
182
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Biometric Monitors > Pet Thermometers"),
183
+ 'value' => 58
184
+ ),array(
185
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Bowl Mats"),
186
+ 'value' => 59
187
+ ),array(
188
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Bowls, Feeders & Waterers"),
189
+ 'value' => 60
190
+ ),array(
191
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Bowls, Feeders & Waterers > Cat Bowls, Feeders & Waterers"),
192
+ 'value' => 61
193
+ ),array(
194
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Bowls, Feeders & Waterers > Dog Bowls, Feeders & Waterers"),
195
+ 'value' => 62
196
+ ),array(
197
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Bowls, Feeders & Waterers > Small Animal Bowls, Feeders & Waterers"),
198
+ 'value' => 63
199
+ ),array(
200
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Carriers & Crates"),
201
+ 'value' => 64
202
+ ),array(
203
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Carriers & Crates > Cat Carriers & Crates"),
204
+ 'value' => 65
205
+ ),array(
206
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Carriers & Crates > Dog Carriers & Crates"),
207
+ 'value' => 66
208
+ ),array(
209
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Carriers & Crates > Small Animal Carriers"),
210
+ 'value' => 67
211
+ ),array(
212
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Collars & Harnesses"),
213
+ 'value' => 68
214
+ ),array(
215
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Collars & Harnesses > Cat Collars & Harnesses"),
216
+ 'value' => 69
217
+ ),array(
218
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Collars & Harnesses > Dog Collars & Harnesses"),
219
+ 'value' => 70
220
+ ),array(
221
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Containment Systems"),
222
+ 'value' => 71
223
+ ),array(
224
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Eye Drops & Lubricants"),
225
+ 'value' => 72
226
+ ),array(
227
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Flea & Tick Control"),
228
+ 'value' => 73
229
+ ),array(
230
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Flea & Tick Control > Cat Flea & Tick Control"),
231
+ 'value' => 74
232
+ ),array(
233
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Flea & Tick Control > Dog Flea & Tick Control"),
234
+ 'value' => 75
235
+ ),array(
236
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Food Containers"),
237
+ 'value' => 76
238
+ ),array(
239
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Food Scoops"),
240
+ 'value' => 77
241
+ ),array(
242
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies"),
243
+ 'value' => 78
244
+ ),array(
245
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Combs & Brushes"),
246
+ 'value' => 79
247
+ ),array(
248
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Hair Clippers & Trimmers"),
249
+ 'value' => 80
250
+ ),array(
251
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Nail Polish"),
252
+ 'value' => 81
253
+ ),array(
254
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Nail Tools"),
255
+ 'value' => 82
256
+ ),array(
257
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Grooming Supplies > Pet Shampoo & Conditioner"),
258
+ 'value' => 83
259
+ ),array(
260
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet ID Tags"),
261
+ 'value' => 84
262
+ ),array(
263
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Leash Extensions"),
264
+ 'value' => 85
265
+ ),array(
266
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Leashes"),
267
+ 'value' => 86
268
+ ),array(
269
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Leashes > Cat Leashes"),
270
+ 'value' => 87
271
+ ),array(
272
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Leashes > Dog Leashes"),
273
+ 'value' => 88
274
+ ),array(
275
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Medical Collars"),
276
+ 'value' => 89
277
+ ),array(
278
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Medical Tape & Bandages"),
279
+ 'value' => 90
280
+ ),array(
281
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Medicine"),
282
+ 'value' => 91
283
+ ),array(
284
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Muzzles"),
285
+ 'value' => 92
286
+ ),array(
287
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Oral Care"),
288
+ 'value' => 93
289
+ ),array(
290
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Oral Care > Pet Breath Spray"),
291
+ 'value' => 94
292
+ ),array(
293
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Oral Care > Pet Toothbrushes"),
294
+ 'value' => 95
295
+ ),array(
296
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Oral Care > Pet Toothpaste"),
297
+ 'value' => 96
298
+ ),array(
299
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Playpens"),
300
+ 'value' => 97
301
+ ),array(
302
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Steps & Ramps"),
303
+ 'value' => 98
304
+ ),array(
305
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Strollers"),
306
+ 'value' => 99
307
+ ),array(
308
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Sunscreen"),
309
+ 'value' => 100
310
+ ),array(
311
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Training Pads"),
312
+ 'value' => 101
313
+ ),array(
314
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Pet Vitamins & Supplements"),
315
+ 'value' => 102
316
+ ),array(
317
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies"),
318
+ 'value' => 103
319
+ ),array(
320
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Food"),
321
+ 'value' => 104
322
+ ),array(
323
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitat Accessories"),
324
+ 'value' => 105
325
+ ),array(
326
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitat Heating & Lighting"),
327
+ 'value' => 106
328
+ ),array(
329
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Habitats"),
330
+ 'value' => 107
331
+ ),array(
332
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Reptile & Amphibian Supplies > Reptile & Amphibian Substrates"),
333
+ 'value' => 108
334
+ ),array(
335
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Small Animal Supplies"),
336
+ 'value' => 109
337
+ ),array(
338
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Bedding"),
339
+ 'value' => 110
340
+ ),array(
341
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Food"),
342
+ 'value' => 111
343
+ ),array(
344
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Habitat Accessories"),
345
+ 'value' => 112
346
+ ),array(
347
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Habitats & Cages"),
348
+ 'value' => 113
349
+ ),array(
350
+ 'label' => Mage::helper('richsnippet')->__("Animals & Pet Supplies > Pet Supplies > Small Animal Supplies > Small Animal Treats"),
351
+ 'value' => 114
352
+ ),array(
353
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories"),
354
+ 'value' => 115
355
+ ),array(
356
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing"),
357
+ 'value' => 116
358
+ ),array(
359
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear"),
360
+ 'value' => 117
361
+ ),array(
362
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Dresses"),
363
+ 'value' => 118
364
+ ),array(
365
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Jackets"),
366
+ 'value' => 119
367
+ ),array(
368
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Jackets > Windbreakers"),
369
+ 'value' => 120
370
+ ),array(
371
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Leotards"),
372
+ 'value' => 121
373
+ ),array(
374
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Pants"),
375
+ 'value' => 122
376
+ ),array(
377
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Shirts"),
378
+ 'value' => 123
379
+ ),array(
380
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Shorts"),
381
+ 'value' => 124
382
+ ),array(
383
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Skirts"),
384
+ 'value' => 125
385
+ ),array(
386
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Tanks"),
387
+ 'value' => 126
388
+ ),array(
389
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Undergarments"),
390
+ 'value' => 127
391
+ ),array(
392
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Undergarments > Active Underwear"),
393
+ 'value' => 128
394
+ ),array(
395
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Undergarments > Compression Undergarment Shorts"),
396
+ 'value' => 129
397
+ ),array(
398
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Undergarments > Jock Straps"),
399
+ 'value' => 130
400
+ ),array(
401
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Active Undergarments > Sports Bras"),
402
+ 'value' => 131
403
+ ),array(
404
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Activewear Sets"),
405
+ 'value' => 132
406
+ ),array(
407
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Bicycle Activewear"),
408
+ 'value' => 133
409
+ ),array(
410
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Bibs"),
411
+ 'value' => 134
412
+ ),array(
413
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Jerseys"),
414
+ 'value' => 135
415
+ ),array(
416
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Shorts"),
417
+ 'value' => 136
418
+ ),array(
419
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Skinsuits"),
420
+ 'value' => 137
421
+ ),array(
422
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Bicycle Activewear > Bicycle Tights"),
423
+ 'value' => 138
424
+ ),array(
425
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Boxing Shorts"),
426
+ 'value' => 139
427
+ ),array(
428
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Dancewear"),
429
+ 'value' => 140
430
+ ),array(
431
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Dancewear > Dance Dresses"),
432
+ 'value' => 141
433
+ ),array(
434
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Dancewear > Dance Pants"),
435
+ 'value' => 142
436
+ ),array(
437
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Dancewear > Dance Skirts"),
438
+ 'value' => 143
439
+ ),array(
440
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Dancewear > Dance Tights"),
441
+ 'value' => 144
442
+ ),array(
443
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Dancewear > Dance Tops"),
444
+ 'value' => 145
445
+ ),array(
446
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Football Pants"),
447
+ 'value' => 146
448
+ ),array(
449
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Hunting Clothing"),
450
+ 'value' => 147
451
+ ),array(
452
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Ghillie Suits"),
453
+ 'value' => 148
454
+ ),array(
455
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Hunting & Tactical Pants"),
456
+ 'value' => 149
457
+ ),array(
458
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Hunting Clothing > Hunting & Tactical Vests"),
459
+ 'value' => 150
460
+ ),array(
461
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Long Johns"),
462
+ 'value' => 151
463
+ ),array(
464
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Martial Arts Shorts"),
465
+ 'value' => 152
466
+ ),array(
467
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing"),
468
+ 'value' => 153
469
+ ),array(
470
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Jackets"),
471
+ 'value' => 154
472
+ ),array(
473
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Pants"),
474
+ 'value' => 155
475
+ ),array(
476
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Motorcycle Protective Clothing > Motorcycle Suits"),
477
+ 'value' => 156
478
+ ),array(
479
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Paintball Clothing"),
480
+ 'value' => 157
481
+ ),array(
482
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Sauna Suits"),
483
+ 'value' => 158
484
+ ),array(
485
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Activewear > Snow Pants & Suits"),
486
+ 'value' => 159
487
+ ),array(
488
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing"),
489
+ 'value' => 160
490
+ ),array(
491
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Bottoms"),
492
+ 'value' => 161
493
+ ),array(
494
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Diaper Covers"),
495
+ 'value' => 162
496
+ ),array(
497
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Dresses"),
498
+ 'value' => 163
499
+ ),array(
500
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Outerwear"),
501
+ 'value' => 164
502
+ ),array(
503
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Outfits"),
504
+ 'value' => 165
505
+ ),array(
506
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Socks & Tights"),
507
+ 'value' => 166
508
+ ),array(
509
+
510
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Swimwear"),
511
+ 'value' => 167
512
+ ),array(
513
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby & Toddler Tops"),
514
+ 'value' => 168
515
+ ),array(
516
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby Onesies"),
517
+ 'value' => 169
518
+ ),array(
519
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Baby Sleepwear & Swaddlers"),
520
+ 'value' => 170
521
+ ),array(
522
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Baby & Toddler Clothing > Toddler Underwear"),
523
+ 'value' => 171
524
+ ),array(
525
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Dresses"),
526
+ 'value' => 172
527
+ ),array(
528
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Dresses > Cocktail Dresses"),
529
+ 'value' => 173
530
+ ),array(
531
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Dresses > Day Dresses"),
532
+ 'value' => 174
533
+ ),array(
534
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Dresses > Formal Gowns"),
535
+ 'value' => 175
536
+ ),array(
537
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Dresses > Little Black Dresses"),
538
+ 'value' => 176
539
+ ),array(
540
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > One-Pieces"),
541
+ 'value' => 177
542
+ ),array(
543
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > One-Pieces > Jumpsuits & Rompers"),
544
+ 'value' => 178
545
+ ),array(
546
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > One-Pieces > Leotards & Unitards"),
547
+ 'value' => 179
548
+ ),array(
549
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > One-Pieces > Overalls"),
550
+ 'value' => 180
551
+ ),array(
552
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear"),
553
+ 'value' => 181
554
+ ),array(
555
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Chaps"),
556
+ 'value' => 182
557
+ ),array(
558
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets"),
559
+ 'value' => 183
560
+ ),array(
561
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Anorak Jackets"),
562
+ 'value' => 184
563
+ ),array(
564
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Blazers"),
565
+ 'value' => 185
566
+ ),array(
567
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Boleros"),
568
+ 'value' => 186
569
+ ),array(
570
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Capes & Ponchos"),
571
+ 'value' => 187
572
+ ),array(
573
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Denim Jackets"),
574
+ 'value' => 188
575
+ ),array(
576
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Down & Snow Jackets"),
577
+ 'value' => 189
578
+ ),array(
579
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Fleece Jackets"),
580
+ 'value' => 190
581
+ ),array(
582
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Fur Coats"),
583
+ 'value' => 191
584
+ ),array(
585
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Leather & Suede Jackets"),
586
+ 'value' => 192
587
+ ),array(
588
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Overcoats"),
589
+ 'value' => 193
590
+ ),array(
591
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Trench Coats"),
592
+ 'value' => 194
593
+ ),array(
594
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Tweed Jackets"),
595
+ 'value' => 195
596
+ ),array(
597
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Coats & Jackets > Varsity Jackets"),
598
+ 'value' => 196
599
+ ),array(
600
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Rain Gear"),
601
+ 'value' => 197
602
+ ),array(
603
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Rain Gear > Rain Pants"),
604
+ 'value' => 198
605
+ ),array(
606
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Rain Gear > Rain Suits"),
607
+ 'value' => 199
608
+ ),array(
609
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Rain Gear > Raincoats"),
610
+ 'value' => 200
611
+ ),array(
612
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outerwear > Vests"),
613
+ 'value' => 201
614
+ ),array(
615
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Outfit Sets"),
616
+ 'value' => 202
617
+ ),array(
618
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants"),
619
+ 'value' => 203
620
+ ),array(
621
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Cargo Pants"),
622
+ 'value' => 204
623
+ ),array(
624
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Corduroy & Velvet Pants"),
625
+ 'value' => 205
626
+ ),array(
627
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Dress Pants"),
628
+ 'value' => 206
629
+ ),array(
630
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Jeans"),
631
+ 'value' => 207
632
+ ),array(
633
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Khaki & Chino Pants"),
634
+ 'value' => 208
635
+ ),array(
636
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Leather & Suede Pants"),
637
+ 'value' => 209
638
+ ),array(
639
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Leggings"),
640
+ 'value' => 210
641
+ ),array(
642
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Pants > Linen Pants"),
643
+ 'value' => 211
644
+ ),array(
645
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops"),
646
+ 'value' => 212
647
+ ),array(
648
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops > Camisoles & Tank Tops"),
649
+ 'value' => 213
650
+ ),array(
651
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops > Polo Shirts"),
652
+ 'value' => 214
653
+ ),array(
654
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops > Shirts & Blouses"),
655
+ 'value' => 215
656
+ ),array(
657
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops > Sports Fan Jerseys"),
658
+ 'value' => 216
659
+ ),array(
660
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops > Sweaters & Cardigans"),
661
+ 'value' => 217
662
+ ),array(
663
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops > Sweatshirts"),
664
+ 'value' => 218
665
+ ),array(
666
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shirts & Tops > T-Shirts"),
667
+ 'value' => 219
668
+ ),array(
669
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shorts"),
670
+ 'value' => 220
671
+ ),array(
672
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shorts > Bermuda Shorts"),
673
+ 'value' => 221
674
+ ),array(
675
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shorts > Cargo Shorts"),
676
+ 'value' => 222
677
+ ),array(
678
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Shorts > Short Shorts"),
679
+ 'value' => 223
680
+ ),array(
681
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Skirts"),
682
+ 'value' => 224
683
+ ),array(
684
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Skorts"),
685
+ 'value' => 225
686
+ ),array(
687
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Sleepwear & Loungewear"),
688
+ 'value' => 226
689
+ ),array(
690
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Sleepwear & Loungewear > Loungewear"),
691
+ 'value' => 227
692
+ ),array(
693
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Sleepwear & Loungewear > Nightgowns"),
694
+ 'value' => 228
695
+ ),array(
696
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Sleepwear & Loungewear > Pajamas"),
697
+ 'value' => 229
698
+ ),array(
699
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Sleepwear & Loungewear > Robes"),
700
+ 'value' => 230
701
+ ),array(
702
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Suits"),
703
+ 'value' => 231
704
+ ),array(
705
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Suits > Pant Suits"),
706
+ 'value' => 232
707
+ ),array(
708
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Suits > Skirt Suits"),
709
+ 'value' => 233
710
+ ),array(
711
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Suits > Suit Separates"),
712
+ 'value' => 234
713
+ ),array(
714
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Suits > Tuxedos"),
715
+ 'value' => 235
716
+ ),array(
717
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear"),
718
+ 'value' => 236
719
+ ),array(
720
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > Bikinis"),
721
+ 'value' => 237
722
+ ),array(
723
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > Cover-Ups"),
724
+ 'value' => 238
725
+ ),array(
726
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > One-Piece Swimsuits"),
727
+ 'value' => 239
728
+ ),array(
729
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > Swim Briefs"),
730
+ 'value' => 240
731
+ ),array(
732
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > Swim Shorts"),
733
+ 'value' => 241
734
+ ),array(
735
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > Swimsuit Bottoms"),
736
+ 'value' => 242
737
+ ),array(
738
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > Swimsuit Tops"),
739
+ 'value' => 243
740
+ ),array(
741
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Swimwear > Tankinis & Extra Coverage Swimwear"),
742
+ 'value' => 244
743
+ ),array(
744
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing"),
745
+ 'value' => 245
746
+ ),array(
747
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Dirndls"),
748
+ 'value' => 246
749
+ ),array(
750
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Hakama Trousers"),
751
+ 'value' => 247
752
+ ),array(
753
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimono Outerwear"),
754
+ 'value' => 248
755
+ ),array(
756
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimono Outerwear > Haori Jackets"),
757
+ 'value' => 249
758
+ ),array(
759
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimono Outerwear > Kimono Coats"),
760
+ 'value' => 250
761
+ ),array(
762
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos"),
763
+ 'value' => 251
764
+ ),array(
765
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos > Bridal Kimonos"),
766
+ 'value' => 252
767
+ ),array(
768
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos > Casual Kimonos"),
769
+ 'value' => 253
770
+ ),array(
771
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos > Furisode Kimonos"),
772
+ 'value' => 254
773
+ ),array(
774
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos > Iromuji Kimonos"),
775
+ 'value' => 255
776
+ ),array(
777
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos > Komon Kimonos"),
778
+ 'value' => 256
779
+ ),array(
780
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Kimonos > Tomesode & Houmongi Kimonos"),
781
+ 'value' => 257
782
+ ),array(
783
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Religious Ceremonial Clothing"),
784
+ 'value' => 258
785
+ ),array(
786
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Traditional Leather Pants"),
787
+ 'value' => 259
788
+ ),array(
789
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Traditional & Ceremonial Clothing > Yukata"),
790
+ 'value' => 260
791
+ ),array(
792
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks"),
793
+ 'value' => 261
794
+ ),array(
795
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories"),
796
+ 'value' => 262
797
+ ),array(
798
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Bra Strap Pads"),
799
+ 'value' => 263
800
+ ),array(
801
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Bra Straps & Extenders"),
802
+ 'value' => 264
803
+ ),array(
804
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Breast Enhancing Inserts"),
805
+ 'value' => 265
806
+ ),array(
807
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bra Accessories > Breast Petals & Concealers"),
808
+ 'value' => 266
809
+ ),array(
810
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bras"),
811
+ 'value' => 267
812
+ ),array(
813
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bras > Nursing Bras"),
814
+ 'value' => 268
815
+ ),array(
816
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Bridal Intimates"),
817
+ 'value' => 269
818
+ ),array(
819
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Hosiery"),
820
+ 'value' => 270
821
+ ),array(
822
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Lingerie"),
823
+ 'value' => 271
824
+ ),array(
825
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories"),
826
+ 'value' => 272
827
+ ),array(
828
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories > Garter Belts"),
829
+ 'value' => 273
830
+ ),array(
831
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Lingerie Accessories > Garters"),
832
+ 'value' => 274
833
+ ),array(
834
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Petticoats & Pettipants"),
835
+ 'value' => 275
836
+ ),array(
837
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Shapewear"),
838
+ 'value' => 276
839
+ ),array(
840
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Socks"),
841
+ 'value' => 277
842
+ ),array(
843
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Undershirts"),
844
+ 'value' => 278
845
+ ),array(
846
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Underwear"),
847
+ 'value' => 279
848
+ ),array(
849
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Underwear & Socks > Underwear Slips"),
850
+ 'value' => 280
851
+ ),array(
852
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms"),
853
+ 'value' => 281
854
+ ),array(
855
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Contractor Pants & Coveralls"),
856
+ 'value' => 282
857
+ ),array(
858
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Flight Suits"),
859
+ 'value' => 283
860
+ ),array(
861
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms"),
862
+ 'value' => 284
863
+ ),array(
864
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef's Hats"),
865
+ 'value' => 285
866
+ ),array(
867
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef's Jackets"),
868
+ 'value' => 286
869
+ ),array(
870
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Food Service Uniforms > Chef's Pants"),
871
+ 'value' => 287
872
+ ),array(
873
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Military Uniforms"),
874
+ 'value' => 288
875
+ ),array(
876
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > School Uniforms"),
877
+ 'value' => 289
878
+ ),array(
879
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Security Uniforms"),
880
+ 'value' => 290
881
+ ),array(
882
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms"),
883
+ 'value' => 291
884
+ ),array(
885
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Baseball Uniforms"),
886
+ 'value' => 292
887
+ ),array(
888
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Basketball Uniforms"),
889
+ 'value' => 293
890
+ ),array(
891
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Cheerleading Uniforms"),
892
+ 'value' => 294
893
+ ),array(
894
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Cricket Uniforms"),
895
+ 'value' => 295
896
+ ),array(
897
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Football Uniforms"),
898
+ 'value' => 296
899
+ ),array(
900
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Hockey Uniforms"),
901
+ 'value' => 297
902
+ ),array(
903
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Martial Arts Uniforms"),
904
+ 'value' => 298
905
+ ),array(
906
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Officiating Uniforms"),
907
+ 'value' => 299
908
+ ),array(
909
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Soccer Uniforms"),
910
+ 'value' => 300
911
+ ),array(
912
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Softball Uniforms"),
913
+ 'value' => 301
914
+ ),array(
915
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > Sports Uniforms > Wrestling Uniforms"),
916
+ 'value' => 302
917
+ ),array(
918
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Uniforms > White Coats"),
919
+ 'value' => 303
920
+ ),array(
921
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses"),
922
+ 'value' => 304
923
+ ),array(
924
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses > Bridal Party Dresses"),
925
+ 'value' => 305
926
+ ),array(
927
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing > Wedding & Bridal Party Dresses > Wedding Dresses"),
928
+ 'value' => 306
929
+ ),array(
930
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories"),
931
+ 'value' => 307
932
+ ),array(
933
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Arm & Leg Warmers"),
934
+ 'value' => 308
935
+ ),array(
936
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Arm & Leg Warmers > Arm Warmers"),
937
+ 'value' => 309
938
+ ),array(
939
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Arm & Leg Warmers > Leg Warmers"),
940
+ 'value' => 310
941
+ ),array(
942
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories"),
943
+ 'value' => 311
944
+ ),array(
945
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Belts"),
946
+ 'value' => 312
947
+ ),array(
948
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Gloves & Mittens"),
949
+ 'value' => 313
950
+ ),array(
951
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby & Toddler Hats"),
952
+ 'value' => 314
953
+ ),array(
954
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Baby & Toddler Clothing Accessories > Baby Protective Wear"),
955
+ 'value' => 315
956
+ ),array(
957
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Balaclavas"),
958
+ 'value' => 316
959
+ ),array(
960
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Bandanas & Headties"),
961
+ 'value' => 317
962
+ ),array(
963
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Belt Buckles"),
964
+ 'value' => 318
965
+ ),array(
966
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Belts"),
967
+ 'value' => 319
968
+ ),array(
969
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Bridal Accessories"),
970
+ 'value' => 320
971
+ ),array(
972
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Bridal Accessories > Bridal Veils"),
973
+ 'value' => 321
974
+ ),array(
975
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Button Studs"),
976
+ 'value' => 322
977
+ ),array(
978
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Collar Stays"),
979
+ 'value' => 323
980
+ ),array(
981
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Cufflinks"),
982
+ 'value' => 324
983
+ ),array(
984
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Earmuffs"),
985
+ 'value' => 325
986
+ ),array(
987
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Folding Fans"),
988
+ 'value' => 326
989
+ ),array(
990
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Gloves & Mittens"),
991
+ 'value' => 327
992
+ ),array(
993
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Gloves & Mittens > Formal Gloves"),
994
+ 'value' => 328
995
+ ),array(
996
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Gloves & Mittens > Gloves"),
997
+ 'value' => 329
998
+ ),array(
999
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Gloves & Mittens > Mittens"),
1000
+ 'value' => 330
1001
+ ),array(
1002
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Gloves & Mittens > Ski & Snowboard Gloves"),
1003
+ 'value' => 331
1004
+ ),array(
1005
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories"),
1006
+ 'value' => 332
1007
+ ),array(
1008
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Claws"),
1009
+ 'value' => 333
1010
+ ),array(
1011
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Combs"),
1012
+ 'value' => 334
1013
+ ),array(
1014
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Extensions"),
1015
+ 'value' => 335
1016
+ ),array(
1017
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Forks & Sticks"),
1018
+ 'value' => 336
1019
+ ),array(
1020
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Nets"),
1021
+ 'value' => 337
1022
+ ),array(
1023
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Pins & Clips"),
1024
+ 'value' => 338
1025
+ ),array(
1026
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Hair Wreaths"),
1027
+ 'value' => 339
1028
+ ),array(
1029
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Headbands"),
1030
+ 'value' => 340
1031
+ ),array(
1032
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Ponytail Holders"),
1033
+ 'value' => 341
1034
+ ),array(
1035
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hair Accessories > Tiaras"),
1036
+ 'value' => 342
1037
+ ),array(
1038
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hand Muffs"),
1039
+ 'value' => 343
1040
+ ),array(
1041
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Handkerchiefs"),
1042
+ 'value' => 344
1043
+ ),array(
1044
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats"),
1045
+ 'value' => 345
1046
+ ),array(
1047
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Beanies"),
1048
+ 'value' => 346
1049
+ ),array(
1050
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Berets"),
1051
+ 'value' => 347
1052
+ ),array(
1053
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Bowler & Derby Hats"),
1054
+ 'value' => 348
1055
+ ),array(
1056
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Caps"),
1057
+ 'value' => 349
1058
+ ),array(
1059
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Caps > Baseball Caps"),
1060
+ 'value' => 350
1061
+ ),array(
1062
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Caps > Newsboy Caps"),
1063
+ 'value' => 351
1064
+ ),array(
1065
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Cowboys Hats"),
1066
+ 'value' => 352
1067
+ ),array(
1068
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Fedoras"),
1069
+ 'value' => 353
1070
+ ),array(
1071
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Sun Hats"),
1072
+ 'value' => 354
1073
+ ),array(
1074
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Umbrella Hats"),
1075
+ 'value' => 355
1076
+ ),array(
1077
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Hats > Visors"),
1078
+ 'value' => 356
1079
+ ),array(
1080
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Headwear"),
1081
+ 'value' => 357
1082
+ ),array(
1083
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Headwear > Fascinators"),
1084
+ 'value' => 358
1085
+ ),array(
1086
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Headwear > Headdresses"),
1087
+ 'value' => 359
1088
+ ),array(
1089
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Headwear > Turbans"),
1090
+ 'value' => 360
1091
+ ),array(
1092
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Leis"),
1093
+ 'value' => 361
1094
+ ),array(
1095
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Neck Gaiters"),
1096
+ 'value' => 362
1097
+ ),array(
1098
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Neckties"),
1099
+ 'value' => 363
1100
+ ),array(
1101
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Neckties > Ascot Ties"),
1102
+ 'value' => 364
1103
+ ),array(
1104
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Neckties > Bolo Ties"),
1105
+ 'value' => 365
1106
+ ),array(
1107
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Neckties > Bow Ties"),
1108
+ 'value' => 366
1109
+ ),array(
1110
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Neckties > Ties"),
1111
+ 'value' => 367
1112
+ ),array(
1113
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Pinback Buttons"),
1114
+ 'value' => 368
1115
+ ),array(
1116
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Scarves & Shawls"),
1117
+ 'value' => 369
1118
+ ),array(
1119
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Sunglasses"),
1120
+ 'value' => 370
1121
+ ),array(
1122
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Suspenders"),
1123
+ 'value' => 371
1124
+ ),array(
1125
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Tie Clips"),
1126
+ 'value' => 372
1127
+ ),array(
1128
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories"),
1129
+ 'value' => 373
1130
+ ),array(
1131
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Kimono Underclothes"),
1132
+ 'value' => 374
1133
+ ),array(
1134
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Obi Accessories"),
1135
+ 'value' => 375
1136
+ ),array(
1137
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Obis"),
1138
+ 'value' => 376
1139
+ ),array(
1140
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Traditional Clothing Accessories > Tabi Socks"),
1141
+ 'value' => 377
1142
+ ),array(
1143
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Veils"),
1144
+ 'value' => 378
1145
+ ),array(
1146
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Clothing Accessories > Wristbands"),
1147
+ 'value' => 379
1148
+ ),array(
1149
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories"),
1150
+ 'value' => 380
1151
+ ),array(
1152
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costume Accessories"),
1153
+ 'value' => 381
1154
+ ),array(
1155
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costume Accessories > Bald Caps"),
1156
+ 'value' => 382
1157
+ ),array(
1158
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Accessory Sets"),
1159
+ 'value' => 383
1160
+ ),array(
1161
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Capes"),
1162
+ 'value' => 384
1163
+ ),array(
1164
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costume Accessories > Costume Hats"),
1165
+ 'value' => 385
1166
+ ),array(
1167
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costume Accessories > Pretend Jewelry"),
1168
+ 'value' => 386
1169
+ ),array(
1170
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costume Shoes"),
1171
+ 'value' => 387
1172
+ ),array(
1173
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Costumes"),
1174
+ 'value' => 388
1175
+ ),array(
1176
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Masks"),
1177
+ 'value' => 389
1178
+ ),array(
1179
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Wig Accessories"),
1180
+ 'value' => 390
1181
+ ),array(
1182
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Wig Accessories > Wig Caps"),
1183
+ 'value' => 391
1184
+ ),array(
1185
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Wig Accessories > Wig Glue"),
1186
+ 'value' => 392
1187
+ ),array(
1188
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Costumes & Accessories > Wigs"),
1189
+ 'value' => 393
1190
+ ),array(
1191
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbag & Wallet Accessories"),
1192
+ 'value' => 394
1193
+ ),array(
1194
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbag & Wallet Accessories > Checkbook Covers"),
1195
+ 'value' => 395
1196
+ ),array(
1197
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbag & Wallet Accessories > Keychains"),
1198
+ 'value' => 396
1199
+ ),array(
1200
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbag & Wallet Accessories > Lanyards"),
1201
+ 'value' => 397
1202
+ ),array(
1203
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbag & Wallet Accessories > Wallet Chains"),
1204
+ 'value' => 398
1205
+ ),array(
1206
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases"),
1207
+ 'value' => 399
1208
+ ),array(
1209
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Badge & Pass Holders"),
1210
+ 'value' => 400
1211
+ ),array(
1212
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Business Card Cases"),
1213
+ 'value' => 401
1214
+ ),array(
1215
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags"),
1216
+ 'value' => 402
1217
+ ),array(
1218
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags > Clutches & Special Occasion Bags"),
1219
+ 'value' => 403
1220
+ ),array(
1221
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags > Cross-Body Handbags"),
1222
+ 'value' => 404
1223
+ ),array(
1224
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags > Hobo Handbags"),
1225
+ 'value' => 405
1226
+ ),array(
1227
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags > Satchels"),
1228
+ 'value' => 406
1229
+ ),array(
1230
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags > Shoulder Bags"),
1231
+ 'value' => 407
1232
+ ),array(
1233
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags > Tote Handbags"),
1234
+ 'value' => 408
1235
+ ),array(
1236
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Handbags > Wristlets"),
1237
+ 'value' => 409
1238
+ ),array(
1239
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Handbags, Wallets & Cases > Wallets & Money Clips"),
1240
+ 'value' => 410
1241
+ ),array(
1242
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry"),
1243
+ 'value' => 411
1244
+ ),array(
1245
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Anklets"),
1246
+ 'value' => 412
1247
+ ),array(
1248
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Body Jewelry"),
1249
+ 'value' => 413
1250
+ ),array(
1251
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Bracelets"),
1252
+ 'value' => 414
1253
+ ),array(
1254
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Brooches & Lapel Pins"),
1255
+ 'value' => 415
1256
+ ),array(
1257
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Charms & Pendants"),
1258
+ 'value' => 416
1259
+ ),array(
1260
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Earrings"),
1261
+ 'value' => 417
1262
+ ),array(
1263
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Jewelry Sets"),
1264
+ 'value' => 418
1265
+ ),array(
1266
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Loose Stones"),
1267
+ 'value' => 419
1268
+ ),array(
1269
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Loose Stones > Diamonds"),
1270
+ 'value' => 420
1271
+ ),array(
1272
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Necklaces"),
1273
+ 'value' => 421
1274
+ ),array(
1275
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Rings"),
1276
+ 'value' => 422
1277
+ ),array(
1278
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Watch Accessories"),
1279
+ 'value' => 423
1280
+ ),array(
1281
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Watch Accessories > Watch Bands"),
1282
+ 'value' => 424
1283
+ ),array(
1284
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Watch Accessories > Watch Stickers & Decals"),
1285
+ 'value' => 425
1286
+ ),array(
1287
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Watch Accessories > Watch Winders"),
1288
+ 'value' => 426
1289
+ ),array(
1290
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Watches"),
1291
+ 'value' => 427
1292
+ ),array(
1293
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Watches > Analog Watches"),
1294
+ 'value' => 428
1295
+ ),array(
1296
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Jewelry > Watches > Digital Watches"),
1297
+ 'value' => 429
1298
+ ),array(
1299
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoe Accessories"),
1300
+ 'value' => 430
1301
+ ),array(
1302
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoe Accessories > Boot Liners"),
1303
+ 'value' => 431
1304
+ ),array(
1305
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoe Accessories > Gaiters"),
1306
+ 'value' => 432
1307
+ ),array(
1308
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoe Accessories > Shoe Covers"),
1309
+ 'value' => 433
1310
+ ),array(
1311
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoe Accessories > Shoelaces"),
1312
+ 'value' => 434
1313
+ ),array(
1314
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoe Accessories > Spurs"),
1315
+ 'value' => 435
1316
+ ),array(
1317
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes"),
1318
+ 'value' => 436
1319
+ ),array(
1320
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers"),
1321
+ 'value' => 437
1322
+ ),array(
1323
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes"),
1324
+ 'value' => 438
1325
+ ),array(
1326
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Ballet & Dance Shoes"),
1327
+ 'value' => 439
1328
+ ),array(
1329
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Basketball Shoes"),
1330
+ 'value' => 440
1331
+ ),array(
1332
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Bowling Shoes"),
1333
+ 'value' => 441
1334
+ ),array(
1335
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Boxing Shoes"),
1336
+ 'value' => 442
1337
+ ),array(
1338
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Cheerleading Shoes"),
1339
+ 'value' => 443
1340
+ ),array(
1341
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Cycling Shoes"),
1342
+ 'value' => 444
1343
+ ),array(
1344
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Golf Shoes"),
1345
+ 'value' => 445
1346
+ ),array(
1347
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Indoor Court Shoes"),
1348
+ 'value' => 446
1349
+ ),array(
1350
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Indoor Court Shoes > Badminton Shoes"),
1351
+ 'value' => 447
1352
+ ),array(
1353
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Indoor Court Shoes > Handball Shoes"),
1354
+ 'value' => 448
1355
+ ),array(
1356
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Indoor Court Shoes > Volleyball Shoes"),
1357
+ 'value' => 449
1358
+ ),array(
1359
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Indoor Soccer Shoes"),
1360
+ 'value' => 450
1361
+ ),array(
1362
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Skateboarding Shoes"),
1363
+ 'value' => 451
1364
+ ),array(
1365
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Table Tennis Shoes"),
1366
+ 'value' => 452
1367
+ ),array(
1368
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Tennis Shoes"),
1369
+ 'value' => 453
1370
+ ),array(
1371
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Weightlifting Shoes"),
1372
+ 'value' => 454
1373
+ ),array(
1374
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Athletic Shoes > Wrestling Shoes"),
1375
+ 'value' => 455
1376
+ ),array(
1377
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Cleats"),
1378
+ 'value' => 456
1379
+ ),array(
1380
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Cleats > Baseball & Softball Cleats"),
1381
+ 'value' => 457
1382
+ ),array(
1383
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Cleats > Football Cleats"),
1384
+ 'value' => 458
1385
+ ),array(
1386
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Cleats > Lacrosse Cleats"),
1387
+ 'value' => 459
1388
+ ),array(
1389
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Cleats > Rugby Boots"),
1390
+ 'value' => 460
1391
+ ),array(
1392
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Cleats > Soccer Cleats"),
1393
+ 'value' => 461
1394
+ ),array(
1395
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Cleats > Track Spikes"),
1396
+ 'value' => 462
1397
+ ),array(
1398
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Sneakers"),
1399
+ 'value' => 463
1400
+ ),array(
1401
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Sneakers > Cross Training Shoes"),
1402
+ 'value' => 464
1403
+ ),array(
1404
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Sneakers > Fashion Sneakers"),
1405
+ 'value' => 465
1406
+ ),array(
1407
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Sneakers > Running Shoes"),
1408
+ 'value' => 466
1409
+ ),array(
1410
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Athletic Shoes & Sneakers > Sneakers > Walking Shoes"),
1411
+ 'value' => 467
1412
+ ),array(
1413
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Baby & Toddler Shoes"),
1414
+ 'value' => 468
1415
+ ),array(
1416
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots"),
1417
+ 'value' => 469
1418
+ ),array(
1419
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Cowboy Boots"),
1420
+ 'value' => 470
1421
+ ),array(
1422
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Desert & Chukka Boots"),
1423
+ 'value' => 471
1424
+ ),array(
1425
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Dress Boots"),
1426
+ 'value' => 472
1427
+ ),array(
1428
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Motorcycle Boots"),
1429
+ 'value' => 473
1430
+ ),array(
1431
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Rain Boots"),
1432
+ 'value' => 474
1433
+ ),array(
1434
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Riding Boots"),
1435
+ 'value' => 475
1436
+ ),array(
1437
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Shearling & Fur Trimmed Boots"),
1438
+ 'value' => 476
1439
+ ),array(
1440
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Snow Boots"),
1441
+ 'value' => 477
1442
+ ),array(
1443
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Boots > Work & Safety Boots"),
1444
+ 'value' => 478
1445
+ ),array(
1446
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Clogs & Mules"),
1447
+ 'value' => 479
1448
+ ),array(
1449
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Dress Shoes"),
1450
+ 'value' => 480
1451
+ ),array(
1452
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Dress Shoes > Formal Shoes"),
1453
+ 'value' => 481
1454
+ ),array(
1455
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Dress Shoes > Oxford Shoes"),
1456
+ 'value' => 482
1457
+ ),array(
1458
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Dress Shoes > Pumps"),
1459
+ 'value' => 483
1460
+ ),array(
1461
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Dress Shoes > Pumps > Basic Pumps"),
1462
+ 'value' => 484
1463
+ ),array(
1464
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Dress Shoes > Pumps > D'orsay & Two-Piece Pumps"),
1465
+ 'value' => 485
1466
+ ),array(
1467
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Dress Shoes > Pumps > Spectator Pumps"),
1468
+ 'value' => 486
1469
+ ),array(
1470
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Espadrilles"),
1471
+ 'value' => 487
1472
+ ),array(
1473
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Flats"),
1474
+ 'value' => 488
1475
+ ),array(
1476
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Loafers & Slip-Ons"),
1477
+ 'value' => 489
1478
+ ),array(
1479
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Moccasins"),
1480
+ 'value' => 490
1481
+ ),array(
1482
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Outdoor Shoes"),
1483
+ 'value' => 491
1484
+ ),array(
1485
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Outdoor Shoes > Climbing Shoes"),
1486
+ 'value' => 492
1487
+ ),array(
1488
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Outdoor Shoes > Fishing & Hunting Shoes"),
1489
+ 'value' => 493
1490
+ ),array(
1491
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Outdoor Shoes > Gardening Shoes"),
1492
+ 'value' => 494
1493
+ ),array(
1494
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Outdoor Shoes > Hiking Boots & Shoes"),
1495
+ 'value' => 495
1496
+ ),array(
1497
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Outdoor Shoes > Performance Boating Shoes"),
1498
+ 'value' => 496
1499
+ ),array(
1500
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Outdoor Shoes > Water Shoes"),
1501
+ 'value' => 497
1502
+ ),array(
1503
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Sandals"),
1504
+ 'value' => 498
1505
+ ),array(
1506
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Sandals > Fisherman Sandals"),
1507
+ 'value' => 499
1508
+ ),array(
1509
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Sandals > Slide Sandals"),
1510
+ 'value' => 500
1511
+ ),array(
1512
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Sandals > Thongs & Flip-Flops"),
1513
+ 'value' => 501
1514
+ ),array(
1515
+ 'label' => Mage::helper('richsnippet')->__("Apparel & Accessories > Shoes > Slippers"),
1516
+ 'value' => 502
1517
+ ),array(
1518
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment"),
1519
+ 'value' => 503
1520
+ ),array(
1521
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts"),
1522
+ 'value' => 504
1523
+ ),array(
1524
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork"),
1525
+ 'value' => 505
1526
+ ),array(
1527
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Cardboard Cutouts"),
1528
+ 'value' => 506
1529
+ ),array(
1530
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Drawings & Illustrations"),
1531
+ 'value' => 507
1532
+ ),array(
1533
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Mixed Media Art"),
1534
+ 'value' => 508
1535
+ ),array(
1536
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Paintings"),
1537
+ 'value' => 509
1538
+ ),array(
1539
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Photographs"),
1540
+ 'value' => 510
1541
+ ),array(
1542
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Photographs > Stock Photographs"),
1543
+ 'value' => 511
1544
+ ),array(
1545
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Posters"),
1546
+ 'value' => 512
1547
+ ),array(
1548
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Artwork > Sculptures & Statues"),
1549
+ 'value' => 513
1550
+ ),array(
1551
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles"),
1552
+ 'value' => 514
1553
+ ),array(
1554
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Autographs"),
1555
+ 'value' => 515
1556
+ ),array(
1557
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Coins & Currency"),
1558
+ 'value' => 516
1559
+ ),array(
1560
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons"),
1561
+ 'value' => 517
1562
+ ),array(
1563
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Knives"),
1564
+ 'value' => 518
1565
+ ),array(
1566
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Collectible Swords"),
1567
+ 'value' => 519
1568
+ ),array(
1569
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Collectible Weapons > Sword Stands & Displays"),
1570
+ 'value' => 520
1571
+ ),array(
1572
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Postage Stamps"),
1573
+ 'value' => 521
1574
+ ),array(
1575
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Rocks & Fossils"),
1576
+ 'value' => 522
1577
+ ),array(
1578
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Scale Model Accessories"),
1579
+ 'value' => 523
1580
+ ),array(
1581
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Scale Models"),
1582
+ 'value' => 524
1583
+ ),array(
1584
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Seal Stamps"),
1585
+ 'value' => 525
1586
+ ),array(
1587
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles"),
1588
+ 'value' => 526
1589
+ ),array(
1590
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia"),
1591
+ 'value' => 527
1592
+ ),array(
1593
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Auto Racing Autographed Paraphernalia"),
1594
+ 'value' => 528
1595
+ ),array(
1596
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Baseball & Softball Autographed Paraphernalia"),
1597
+ 'value' => 529
1598
+ ),array(
1599
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Basketball Autographed Paraphernalia"),
1600
+ 'value' => 530
1601
+ ),array(
1602
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Football Autographed Paraphernalia"),
1603
+ 'value' => 531
1604
+ ),array(
1605
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Hockey Autographed Paraphernalia"),
1606
+ 'value' => 532
1607
+ ),array(
1608
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Soccer Autographed Paraphernalia"),
1609
+ 'value' => 533
1610
+ ),array(
1611
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Autographed Sports Paraphernalia > Tennis Autographed Sports Paraphernalia"),
1612
+ 'value' => 534
1613
+ ),array(
1614
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories"),
1615
+ 'value' => 535
1616
+ ),array(
1617
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Auto Racing Fan Accessories"),
1618
+ 'value' => 536
1619
+ ),array(
1620
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Baseball & Softball Fan Accessories"),
1621
+ 'value' => 537
1622
+ ),array(
1623
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Basketball Fan Accessories"),
1624
+ 'value' => 538
1625
+ ),array(
1626
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Football Fan Accessories"),
1627
+ 'value' => 539
1628
+ ),array(
1629
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Hockey Fan Accessories"),
1630
+ 'value' => 540
1631
+ ),array(
1632
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Soccer Fan Accessories"),
1633
+ 'value' => 541
1634
+ ),array(
1635
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Sports Collectibles > Sports Fan Accessories > Tennis Fan Accessories"),
1636
+ 'value' => 542
1637
+ ),array(
1638
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards"),
1639
+ 'value' => 543
1640
+ ),array(
1641
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards > Sports Trading Cards"),
1642
+ 'value' => 544
1643
+ ),array(
1644
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards > Sports Trading Cards > Auto Racing Trading Cards"),
1645
+ 'value' => 545
1646
+ ),array(
1647
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards > Sports Trading Cards > Baseball Trading Cards"),
1648
+ 'value' => 546
1649
+ ),array(
1650
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards > Sports Trading Cards > Basketball Trading Cards"),
1651
+ 'value' => 547
1652
+ ),array(
1653
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards > Sports Trading Cards > Football Trading Cards"),
1654
+ 'value' => 548
1655
+ ),array(
1656
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards > Sports Trading Cards > Hockey Trading Cards"),
1657
+ 'value' => 549
1658
+ ),array(
1659
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Trading Cards > Sports Trading Cards > Soccer Trading Cards"),
1660
+ 'value' => 550
1661
+ ),array(
1662
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Collectibles > Vintage Advertisements"),
1663
+ 'value' => 551
1664
+ ),array(
1665
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies"),
1666
+ 'value' => 552
1667
+ ),array(
1668
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper"),
1669
+ 'value' => 553
1670
+ ),array(
1671
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Construction Paper"),
1672
+ 'value' => 554
1673
+ ),array(
1674
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Origami Paper"),
1675
+ 'value' => 555
1676
+ ),array(
1677
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Scratchboard Paper"),
1678
+ 'value' => 556
1679
+ ),array(
1680
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Sketch Pads"),
1681
+ 'value' => 557
1682
+ ),array(
1683
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Tracing Paper"),
1684
+ 'value' => 558
1685
+ ),array(
1686
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Transfer Paper"),
1687
+ 'value' => 559
1688
+ ),array(
1689
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Vellum"),
1690
+ 'value' => 560
1691
+ ),array(
1692
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Art Paper > Watercolor Paper"),
1693
+ 'value' => 561
1694
+ ),array(
1695
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Beading Patterns"),
1696
+ 'value' => 562
1697
+ ),array(
1698
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Candle & Soap Making"),
1699
+ 'value' => 563
1700
+ ),array(
1701
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Candle & Soap Making > Wick Tabs"),
1702
+ 'value' => 564
1703
+ ),array(
1704
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Candle & Soap Making > Wicks"),
1705
+ 'value' => 565
1706
+ ),array(
1707
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Canvas & Boards"),
1708
+ 'value' => 566
1709
+ ),array(
1710
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft & Hobby Storage"),
1711
+ 'value' => 567
1712
+ ),array(
1713
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft & Hobby Storage > Knitting Needle & Crochet Hook Cases"),
1714
+ 'value' => 568
1715
+ ),array(
1716
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft & Hobby Storage > Sewing Organizers"),
1717
+ 'value' => 569
1718
+ ),array(
1719
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft & Hobby Storage > Yarn Organizers"),
1720
+ 'value' => 570
1721
+ ),array(
1722
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft Blanks"),
1723
+ 'value' => 571
1724
+ ),array(
1725
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft Foam & Styrofoam"),
1726
+ 'value' => 572
1727
+ ),array(
1728
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft Magnets"),
1729
+ 'value' => 573
1730
+ ),array(
1731
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft Molds"),
1732
+ 'value' => 574
1733
+ ),array(
1734
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Craft Pipe Cleaners"),
1735
+ 'value' => 575
1736
+ ),array(
1737
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Decorative Stickers"),
1738
+ 'value' => 576
1739
+ ),array(
1740
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting"),
1741
+ 'value' => 577
1742
+ ),array(
1743
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Art Brushes"),
1744
+ 'value' => 578
1745
+ ),array(
1746
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Drafting"),
1747
+ 'value' => 579
1748
+ ),array(
1749
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Drafting > Drafting Compasses"),
1750
+ 'value' => 580
1751
+ ),array(
1752
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Drawing & Painting Kits"),
1753
+ 'value' => 581
1754
+ ),array(
1755
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Painting"),
1756
+ 'value' => 582
1757
+ ),array(
1758
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Painting > Art Paint"),
1759
+ 'value' => 583
1760
+ ),array(
1761
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Painting > Paint Mediums"),
1762
+ 'value' => 584
1763
+ ),array(
1764
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Painting > Palette Knives"),
1765
+ 'value' => 585
1766
+ ),array(
1767
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Drawing & Painting > Painting > Palettes"),
1768
+ 'value' => 586
1769
+ ),array(
1770
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fabric Yo-Yos"),
1771
+ 'value' => 587
1772
+ ),array(
1773
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts"),
1774
+ 'value' => 588
1775
+ ),array(
1776
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Crocheting"),
1777
+ 'value' => 589
1778
+ ),array(
1779
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Crocheting > Crochet Hooks"),
1780
+ 'value' => 590
1781
+ ),array(
1782
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Crocheting > Crochet Thread"),
1783
+ 'value' => 591
1784
+ ),array(
1785
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Cross-Stitch & Embroidery"),
1786
+ 'value' => 592
1787
+ ),array(
1788
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Felting"),
1789
+ 'value' => 593
1790
+ ),array(
1791
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Felting > Felting Molds"),
1792
+ 'value' => 594
1793
+ ),array(
1794
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Felting > Felting Needles"),
1795
+ 'value' => 595
1796
+ ),array(
1797
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Felting > Felting Pads & Mats"),
1798
+ 'value' => 596
1799
+ ),array(
1800
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Fibercraft Patterns"),
1801
+ 'value' => 597
1802
+ ),array(
1803
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Fibercraft Patterns > Cross-Stitch & Embroidery Patterns"),
1804
+ 'value' => 598
1805
+ ),array(
1806
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Fibercraft Patterns > Knitting & Crocheting Patterns"),
1807
+ 'value' => 599
1808
+ ),array(
1809
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Fibercraft Patterns > Sewing Patterns"),
1810
+ 'value' => 600
1811
+ ),array(
1812
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Hand Spinning"),
1813
+ 'value' => 601
1814
+ ),array(
1815
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Hand Spinning > Hand Spindles"),
1816
+ 'value' => 602
1817
+ ),array(
1818
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Hand Spinning > Spinning Wheel Accessories"),
1819
+ 'value' => 603
1820
+ ),array(
1821
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Hand Spinning > Spinning Wheels"),
1822
+ 'value' => 604
1823
+ ),array(
1824
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Knitting"),
1825
+ 'value' => 605
1826
+ ),array(
1827
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Knitting > Knitting Needles"),
1828
+ 'value' => 606
1829
+ ),array(
1830
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Lace, Trims & Trimmings"),
1831
+ 'value' => 607
1832
+ ),array(
1833
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Needlepoint"),
1834
+ 'value' => 608
1835
+ ),array(
1836
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Needlepoint > Needlepoint Canvas"),
1837
+ 'value' => 609
1838
+ ),array(
1839
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Needlepoint > Needlepoint Kits"),
1840
+ 'value' => 610
1841
+ ),array(
1842
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Quilting"),
1843
+ 'value' => 611
1844
+ ),array(
1845
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials"),
1846
+ 'value' => 612
1847
+ ),array(
1848
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Elastic"),
1849
+ 'value' => 613
1850
+ ),array(
1851
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Fabric"),
1852
+ 'value' => 614
1853
+ ),array(
1854
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Fabric Patches"),
1855
+ 'value' => 615
1856
+ ),array(
1857
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Hook & Loop Fasteners"),
1858
+ 'value' => 616
1859
+ ),array(
1860
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Interfacing"),
1861
+ 'value' => 617
1862
+ ),array(
1863
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Plastic Canvas"),
1864
+ 'value' => 618
1865
+ ),array(
1866
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Sewing Buttons"),
1867
+ 'value' => 619
1868
+ ),array(
1869
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Sewing Labels"),
1870
+ 'value' => 620
1871
+ ),array(
1872
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Sewing Snaps"),
1873
+ 'value' => 621
1874
+ ),array(
1875
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Stuffing & Filling Material"),
1876
+ 'value' => 622
1877
+ ),array(
1878
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Textile Dyes"),
1879
+ 'value' => 623
1880
+ ),array(
1881
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Textile Paints"),
1882
+ 'value' => 624
1883
+ ),array(
1884
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Thread"),
1885
+ 'value' => 625
1886
+ ),array(
1887
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Unspun Fiber"),
1888
+ 'value' => 626
1889
+ ),array(
1890
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Yarn"),
1891
+ 'value' => 627
1892
+ ),array(
1893
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Materials > Zippers"),
1894
+ 'value' => 628
1895
+ ),array(
1896
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories"),
1897
+ 'value' => 629
1898
+ ),array(
1899
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Blocking Mats"),
1900
+ 'value' => 630
1901
+ ),array(
1902
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Blocking Wires"),
1903
+ 'value' => 631
1904
+ ),array(
1905
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Bow & Pom-Pom Makers"),
1906
+ 'value' => 632
1907
+ ),array(
1908
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Dressforms"),
1909
+ 'value' => 633
1910
+ ),array(
1911
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Adhesives"),
1912
+ 'value' => 634
1913
+ ),array(
1914
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Adhesives > Fabric Glue"),
1915
+ 'value' => 635
1916
+ ),array(
1917
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Adhesives > Fusible Fabric Tape"),
1918
+ 'value' => 636
1919
+ ),array(
1920
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Cutter Dies"),
1921
+ 'value' => 637
1922
+ ),array(
1923
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Cutters"),
1924
+ 'value' => 638
1925
+ ),array(
1926
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Marking Tools"),
1927
+ 'value' => 639
1928
+ ),array(
1929
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Repair Kits"),
1930
+ 'value' => 640
1931
+ ),array(
1932
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fabric Scissors & Shears"),
1933
+ 'value' => 641
1934
+ ),array(
1935
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Fiber Cards"),
1936
+ 'value' => 642
1937
+ ),array(
1938
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Looms"),
1939
+ 'value' => 643
1940
+ ),array(
1941
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Needle Threaders"),
1942
+ 'value' => 644
1943
+ ),array(
1944
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Pin Cushions"),
1945
+ 'value' => 645
1946
+ ),array(
1947
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Safety Pins"),
1948
+ 'value' => 646
1949
+ ),array(
1950
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Seam Rippers"),
1951
+ 'value' => 647
1952
+ ),array(
1953
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Sewing Needles"),
1954
+ 'value' => 648
1955
+ ),array(
1956
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Stitch Markers & Counters"),
1957
+ 'value' => 649
1958
+ ),array(
1959
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Straight Pins"),
1960
+ 'value' => 650
1961
+ ),array(
1962
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Textile Art Frames, Hoops & Stretchers"),
1963
+ 'value' => 651
1964
+
1965
+ ),array(
1966
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Textile Art Gauges & Rulers"),
1967
+ 'value' => 652
1968
+ ),array(
1969
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Thimbles"),
1970
+ 'value' => 653
1971
+ ),array(
1972
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Thread & Yarn Cutters"),
1973
+ 'value' => 654
1974
+ ),array(
1975
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Thread & Yarn Guides"),
1976
+ 'value' => 655
1977
+ ),array(
1978
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Thread & Yarn Spools"),
1979
+ 'value' => 656
1980
+ ),array(
1981
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Thread & Yarn Winders"),
1982
+ 'value' => 657
1983
+ ),array(
1984
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Textile Art Tools & Accessories > Yo-Yo Makers"),
1985
+ 'value' => 658
1986
+ ),array(
1987
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Weaving"),
1988
+ 'value' => 659
1989
+ ),array(
1990
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Weaving > Locker Hooks"),
1991
+ 'value' => 660
1992
+ ),array(
1993
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Weaving > Weaving Beaters"),
1994
+ 'value' => 661
1995
+ ),array(
1996
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Fibercraft & Textile Arts > Weaving > Weaving Shuttles"),
1997
+ 'value' => 662
1998
+ ),array(
1999
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Flower Arranging"),
2000
+ 'value' => 663
2001
+ ),array(
2002
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Flower Arranging > Floral Tape"),
2003
+ 'value' => 664
2004
+ ),array(
2005
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Flower Arranging > Vase Fillers & Table Scatters"),
2006
+ 'value' => 665
2007
+ ),array(
2008
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Glass Crafts"),
2009
+ 'value' => 666
2010
+ ),array(
2011
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Glitter"),
2012
+ 'value' => 667
2013
+ ),array(
2014
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Homebrewing"),
2015
+ 'value' => 668
2016
+ ),array(
2017
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Homebrewing > Beer Brewing"),
2018
+ 'value' => 669
2019
+ ),array(
2020
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Homebrewing > Wine Making"),
2021
+ 'value' => 670
2022
+ ),array(
2023
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Incense Making Kits"),
2024
+ 'value' => 671
2025
+ ),array(
2026
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Jewelry Making"),
2027
+ 'value' => 672
2028
+ ),array(
2029
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Jewelry Making > Beads"),
2030
+ 'value' => 673
2031
+ ),array(
2032
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Jewelry Making > Jewelry & Beading Cord"),
2033
+ 'value' => 674
2034
+ ),array(
2035
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Jewelry Making > Jewelry & Beading Wire"),
2036
+ 'value' => 675
2037
+ ),array(
2038
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Jewelry Making > Jewelry Findings"),
2039
+ 'value' => 676
2040
+ ),array(
2041
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Juggling"),
2042
+ 'value' => 677
2043
+ ),array(
2044
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Leather Crafts"),
2045
+ 'value' => 678
2046
+ ),array(
2047
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Light Boxes"),
2048
+ 'value' => 679
2049
+ ),array(
2050
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Magic & Novelties"),
2051
+ 'value' => 680
2052
+ ),array(
2053
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Magnetic Tape"),
2054
+ 'value' => 681
2055
+ ),array(
2056
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Model Making"),
2057
+ 'value' => 682
2058
+ ),array(
2059
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Model Making > Model Rocketry"),
2060
+ 'value' => 683
2061
+ ),array(
2062
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Model Making > Model Train Accessories"),
2063
+ 'value' => 684
2064
+ ),array(
2065
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Model Making > Model Trains & Train Sets"),
2066
+ 'value' => 685
2067
+ ),array(
2068
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Model Making > Scale Model Kits"),
2069
+ 'value' => 686
2070
+ ),array(
2071
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Mosaic Making"),
2072
+ 'value' => 687
2073
+ ),array(
2074
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Mosaic Making > Mosaic Kits"),
2075
+ 'value' => 688
2076
+ ),array(
2077
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts"),
2078
+ 'value' => 689
2079
+ ),array(
2080
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Card Making Kits"),
2081
+ 'value' => 690
2082
+ ),array(
2083
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Embossing"),
2084
+ 'value' => 691
2085
+ ),array(
2086
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Embossing > Embossers"),
2087
+ 'value' => 692
2088
+ ),array(
2089
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Embossing > Embossing Dies"),
2090
+ 'value' => 693
2091
+ ),array(
2092
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Embossing > Embossing Folders"),
2093
+ 'value' => 694
2094
+ ),array(
2095
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Embossing > Embossing Heat Tools"),
2096
+ 'value' => 695
2097
+ ),array(
2098
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Embossing > Embossing Pens"),
2099
+ 'value' => 696
2100
+ ),array(
2101
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Embossing > Embossing Powder"),
2102
+ 'value' => 697
2103
+ ),array(
2104
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Paper Crafts > Paper Creasers & Scorers"),
2105
+ 'value' => 698
2106
+ ),array(
2107
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Pottery & Sculpting"),
2108
+ 'value' => 699
2109
+ ),array(
2110
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Pottery & Sculpting > Modeling Clay & Dough"),
2111
+ 'value' => 700
2112
+ ),array(
2113
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Printmaking"),
2114
+ 'value' => 701
2115
+ ),array(
2116
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Printmaking > Screen Printing"),
2117
+ 'value' => 702
2118
+ ),array(
2119
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Printmaking > Screen Printing > Brayer Rollers"),
2120
+ 'value' => 703
2121
+ ),array(
2122
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Printmaking > Screen Printing > Screen Printing Squeegees"),
2123
+ 'value' => 704
2124
+ ),array(
2125
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Rhinestones"),
2126
+ 'value' => 705
2127
+ ),array(
2128
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Scrapbooking"),
2129
+ 'value' => 706
2130
+ ),array(
2131
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Sequins"),
2132
+ 'value' => 707
2133
+ ),array(
2134
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Stamping"),
2135
+ 'value' => 708
2136
+ ),array(
2137
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Stamping > Leather Stamps & Kits"),
2138
+ 'value' => 709
2139
+ ),array(
2140
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Stamping > Metal Stamps & Kits"),
2141
+ 'value' => 710
2142
+ ),array(
2143
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Stenciling"),
2144
+ 'value' => 711
2145
+ ),array(
2146
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Stenciling > Stencil Machines"),
2147
+ 'value' => 712
2148
+ ),array(
2149
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Stenciling > Stencils & Dies"),
2150
+ 'value' => 713
2151
+ ),array(
2152
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Watch Repair Kits"),
2153
+ 'value' => 714
2154
+ ),array(
2155
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Woodworking"),
2156
+ 'value' => 715
2157
+ ),array(
2158
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Wreath Making"),
2159
+ 'value' => 716
2160
+ ),array(
2161
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Crafts & Hobbies > Wreath Making > Wreath Frames"),
2162
+ 'value' => 717
2163
+ ),array(
2164
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories"),
2165
+ 'value' => 718
2166
+ ),array(
2167
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories"),
2168
+ 'value' => 719
2169
+ ),array(
2170
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning"),
2171
+ 'value' => 720
2172
+ ),array(
2173
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Brushes, Snakes & Cleaning Rods"),
2174
+ 'value' => 721
2175
+ ),array(
2176
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Care Kits"),
2177
+ 'value' => 722
2178
+ ),array(
2179
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Cleaners & Sanitizers"),
2180
+ 'value' => 723
2181
+ ),array(
2182
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Guards"),
2183
+ 'value' => 724
2184
+ ),array(
2185
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Lubricants"),
2186
+ 'value' => 725
2187
+ ),array(
2188
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Care & Cleaning > Brass Instrument Polishing Cloths"),
2189
+ 'value' => 726
2190
+ ),array(
2191
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Brass Instrument Replacement Parts"),
2192
+ 'value' => 727
2193
+ ),array(
2194
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Euphonium Accessories"),
2195
+ 'value' => 728
2196
+ ),array(
2197
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Euphonium Accessories > Euphonium Cases & Gigbags"),
2198
+ 'value' => 729
2199
+ ),array(
2200
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Euphonium Accessories > Euphonium Mouthpieces"),
2201
+ 'value' => 730
2202
+ ),array(
2203
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Euphonium Accessories > Euphonium Mutes"),
2204
+ 'value' => 731
2205
+ ),array(
2206
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Euphonium Accessories > Euphonium Stands"),
2207
+ 'value' => 732
2208
+ ),array(
2209
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > French Horn Accessories"),
2210
+ 'value' => 733
2211
+ ),array(
2212
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > French Horn Accessories > French Horn Cases & Gigbags"),
2213
+ 'value' => 734
2214
+ ),array(
2215
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > French Horn Accessories > French Horn Mouthpieces"),
2216
+ 'value' => 735
2217
+ ),array(
2218
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > French Horn Accessories > French Horn Mutes"),
2219
+ 'value' => 736
2220
+ ),array(
2221
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > French Horn Accessories > French Horn Stands"),
2222
+ 'value' => 737
2223
+ ),array(
2224
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trombone Accessories"),
2225
+ 'value' => 738
2226
+ ),array(
2227
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trombone Accessories > Trombone Cases & Gigbags"),
2228
+ 'value' => 739
2229
+ ),array(
2230
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trombone Accessories > Trombone Lyres"),
2231
+ 'value' => 740
2232
+ ),array(
2233
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trombone Accessories > Trombone Mouthpieces"),
2234
+ 'value' => 741
2235
+ ),array(
2236
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trombone Accessories > Trombone Mutes"),
2237
+ 'value' => 742
2238
+ ),array(
2239
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trombone Accessories > Trombone Stands"),
2240
+ 'value' => 743
2241
+ ),array(
2242
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trumpet & Cornet Accessories"),
2243
+ 'value' => 744
2244
+ ),array(
2245
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trumpet & Cornet Accessories > Trumpet & Cornet Cases & Gigbags"),
2246
+ 'value' => 745
2247
+ ),array(
2248
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trumpet & Cornet Accessories > Trumpet & Cornet Lyres"),
2249
+ 'value' => 746
2250
+ ),array(
2251
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trumpet & Cornet Accessories > Trumpet & Cornet Mouthpieces"),
2252
+ 'value' => 747
2253
+ ),array(
2254
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trumpet & Cornet Accessories > Trumpet & Cornet Mutes"),
2255
+ 'value' => 748
2256
+ ),array(
2257
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Trumpet & Cornet Accessories > Trumpet & Cornet Stands"),
2258
+ 'value' => 749
2259
+ ),array(
2260
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Tuba Accessories"),
2261
+ 'value' => 750
2262
+ ),array(
2263
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Tuba Accessories > Tuba Cases & Gigbags"),
2264
+ 'value' => 751
2265
+ ),array(
2266
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Tuba Accessories > Tuba Mouthpieces"),
2267
+ 'value' => 752
2268
+ ),array(
2269
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Tuba Accessories > Tuba Mutes"),
2270
+ 'value' => 753
2271
+ ),array(
2272
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Brass Instrument Accessories > Tuba Accessories > Tuba Stands"),
2273
+ 'value' => 754
2274
+ ),array(
2275
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Electronic Tuners"),
2276
+ 'value' => 755
2277
+ ),array(
2278
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Music Stand Accessories"),
2279
+ 'value' => 756
2280
+ ),array(
2281
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Music Stand Accessories > Music Stand Bags"),
2282
+ 'value' => 757
2283
+ ),array(
2284
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Music Stand Accessories > Music Stand Lights"),
2285
+ 'value' => 758
2286
+ ),array(
2287
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Music Stand Accessories > Sheet Music Clips"),
2288
+ 'value' => 759
2289
+ ),array(
2290
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Music Stands"),
2291
+ 'value' => 760
2292
+ ),array(
2293
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Musical Instrument Amplifier Cabinets"),
2294
+ 'value' => 761
2295
+ ),array(
2296
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Musical Instrument Amplifier Stands"),
2297
+ 'value' => 762
2298
+ ),array(
2299
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Musical Instrument Amplifiers"),
2300
+ 'value' => 763
2301
+ ),array(
2302
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Musical Keyboard Accessories"),
2303
+ 'value' => 764
2304
+ ),array(
2305
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Musical Keyboard Accessories > Musical Keyboard Bags & Cases"),
2306
+ 'value' => 765
2307
+ ),array(
2308
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Musical Keyboard Accessories > Musical Keyboard Stands"),
2309
+ 'value' => 766
2310
+ ),array(
2311
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Musical Keyboard Accessories > Sustain Pedals"),
2312
+ 'value' => 767
2313
+ ),array(
2314
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories"),
2315
+ 'value' => 768
2316
+ ),array(
2317
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Cymbal & Drum Cases"),
2318
+ 'value' => 769
2319
+ ),array(
2320
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Cymbal & Drum Mutes"),
2321
+ 'value' => 770
2322
+ ),array(
2323
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Heads"),
2324
+ 'value' => 771
2325
+ ),array(
2326
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Keys"),
2327
+ 'value' => 772
2328
+ ),array(
2329
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Kit Hardware"),
2330
+ 'value' => 773
2331
+ ),array(
2332
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Kit Hardware > Bass Drum Beaters"),
2333
+ 'value' => 774
2334
+ ),array(
2335
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Kit Hardware > Drum Kit Mounting Hardware"),
2336
+ 'value' => 775
2337
+ ),array(
2338
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Kit Hardware > Drum Pedals"),
2339
+ 'value' => 776
2340
+ ),array(
2341
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Stick Accessories"),
2342
+ 'value' => 777
2343
+ ),array(
2344
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Stick Accessories > Drum Stick Bags & Holders"),
2345
+ 'value' => 778
2346
+ ),array(
2347
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drum Sticks"),
2348
+ 'value' => 779
2349
+ ),array(
2350
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Drumming Thrones"),
2351
+ 'value' => 780
2352
+ ),array(
2353
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Electronic Drum Modules"),
2354
+ 'value' => 781
2355
+ ),array(
2356
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Hand Percussion Accessories"),
2357
+ 'value' => 782
2358
+ ),array(
2359
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Hand Percussion Accessories > Hand Percussion Bags & Cases"),
2360
+ 'value' => 783
2361
+ ),array(
2362
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Hand Percussion Accessories > Hand Percussion Stands & Mounts"),
2363
+ 'value' => 784
2364
+ ),array(
2365
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Percussion Mallets"),
2366
+ 'value' => 785
2367
+ ),array(
2368
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Percussion Accessories > Percussion Stands"),
2369
+ 'value' => 786
2370
+ ),array(
2371
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Piano Accessories"),
2372
+ 'value' => 787
2373
+ ),array(
2374
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Piano Accessories > Piano Benches"),
2375
+ 'value' => 788
2376
+ ),array(
2377
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories"),
2378
+ 'value' => 789
2379
+ ),array(
2380
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Cello Accessories"),
2381
+ 'value' => 790
2382
+ ),array(
2383
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Cello Accessories > Cello Bows"),
2384
+ 'value' => 791
2385
+ ),array(
2386
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Cello Accessories > Cello Cases"),
2387
+ 'value' => 792
2388
+ ),array(
2389
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Cello Accessories > Cello Mutes"),
2390
+ 'value' => 793
2391
+ ),array(
2392
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Cello Accessories > Cello Strings"),
2393
+ 'value' => 794
2394
+ ),array(
2395
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories"),
2396
+ 'value' => 795
2397
+ ),array(
2398
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Acoustic Guitar Pickups"),
2399
+ 'value' => 796
2400
+ ),array(
2401
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Capos"),
2402
+ 'value' => 797
2403
+ ),array(
2404
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Electric Guitar Pickups"),
2405
+ 'value' => 798
2406
+ ),array(
2407
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Bridge Pins"),
2408
+ 'value' => 799
2409
+ ),array(
2410
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Cases & Gig Bags"),
2411
+ 'value' => 800
2412
+ ),array(
2413
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Humidifiers"),
2414
+ 'value' => 801
2415
+ ),array(
2416
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Picks"),
2417
+ 'value' => 802
2418
+ ),array(
2419
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Slides"),
2420
+ 'value' => 803
2421
+ ),array(
2422
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Stands"),
2423
+ 'value' => 804
2424
+ ),array(
2425
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Strings"),
2426
+ 'value' => 805
2427
+ ),array(
2428
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Guitar Accessories > Guitar Tuning Machines"),
2429
+ 'value' => 806
2430
+ ),array(
2431
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Harp Accessories"),
2432
+ 'value' => 807
2433
+ ),array(
2434
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Harp Accessories > Harp Cases"),
2435
+ 'value' => 808
2436
+ ),array(
2437
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Harp Accessories > Harp Strings"),
2438
+ 'value' => 809
2439
+ ),array(
2440
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > String Instrument Care & Cleaning"),
2441
+ 'value' => 810
2442
+ ),array(
2443
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > String Instrument Care & Cleaning > Bow Rosin"),
2444
+ 'value' => 811
2445
+ ),array(
2446
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > String Instrument Care & Cleaning > String Instrument Cleaning Cloths"),
2447
+ 'value' => 812
2448
+ ),array(
2449
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > String Instrument Care & Cleaning > String Instrument Polish"),
2450
+ 'value' => 813
2451
+ ),array(
2452
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Upright Bass Accessories"),
2453
+ 'value' => 814
2454
+ ),array(
2455
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Upright Bass Accessories > Upright Bass Bows"),
2456
+ 'value' => 815
2457
+ ),array(
2458
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Upright Bass Accessories > Upright Bass Cases"),
2459
+ 'value' => 816
2460
+ ),array(
2461
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Upright Bass Accessories > Upright Bass Mutes"),
2462
+ 'value' => 817
2463
+ ),array(
2464
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Upright Bass Accessories > Upright Bass Strings"),
2465
+ 'value' => 818
2466
+ ),array(
2467
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Viola Accessories"),
2468
+ 'value' => 819
2469
+ ),array(
2470
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Viola Accessories > Viola Bows"),
2471
+ 'value' => 820
2472
+ ),array(
2473
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Viola Accessories > Viola Cases"),
2474
+ 'value' => 821
2475
+ ),array(
2476
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Viola Accessories > Viola Mutes"),
2477
+ 'value' => 822
2478
+ ),array(
2479
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Viola Accessories > Viola Strings"),
2480
+ 'value' => 823
2481
+ ),array(
2482
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories"),
2483
+ 'value' => 824
2484
+ ),array(
2485
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin & Viola Chinrests"),
2486
+ 'value' => 825
2487
+ ),array(
2488
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin & Viola Shoulder Rests"),
2489
+ 'value' => 826
2490
+ ),array(
2491
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Bows"),
2492
+ 'value' => 827
2493
+ ),array(
2494
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Bridges"),
2495
+ 'value' => 828
2496
+ ),array(
2497
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Cases"),
2498
+ 'value' => 829
2499
+ ),array(
2500
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Mutes"),
2501
+ 'value' => 830
2502
+ ),array(
2503
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Pickups"),
2504
+ 'value' => 831
2505
+ ),array(
2506
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Strings"),
2507
+ 'value' => 832
2508
+ ),array(
2509
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Tailpieces"),
2510
+ 'value' => 833
2511
+ ),array(
2512
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > String Instrument Accessories > Violin Accessories > Violin Tuning Pegs"),
2513
+ 'value' => 834
2514
+ ),array(
2515
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories"),
2516
+ 'value' => 835
2517
+ ),array(
2518
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories"),
2519
+ 'value' => 836
2520
+ ),array(
2521
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Care & Cleaning"),
2522
+ 'value' => 837
2523
+ ),array(
2524
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Care & Cleaning > Bassoon Swabs"),
2525
+ 'value' => 838
2526
+ ),array(
2527
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Cases & Gigbags"),
2528
+ 'value' => 839
2529
+ ),array(
2530
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts"),
2531
+ 'value' => 840
2532
+ ),array(
2533
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts > Bassoon Bocals"),
2534
+ 'value' => 841
2535
+ ),array(
2536
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Parts > Bassoon Small Parts"),
2537
+ 'value' => 842
2538
+ ),array(
2539
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Reeds"),
2540
+ 'value' => 843
2541
+ ),array(
2542
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Stands"),
2543
+ 'value' => 844
2544
+ ),array(
2545
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Bassoon Accessories > Bassoon Straps & Supports"),
2546
+ 'value' => 845
2547
+ ),array(
2548
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories"),
2549
+ 'value' => 846
2550
+ ),array(
2551
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning"),
2552
+ 'value' => 847
2553
+ ),array(
2554
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Care Kits"),
2555
+ 'value' => 848
2556
+ ),array(
2557
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Pad Savers"),
2558
+ 'value' => 849
2559
+ ),array(
2560
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Care & Cleaning > Clarinet Swabs"),
2561
+ 'value' => 850
2562
+ ),array(
2563
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Cases & Gigbags"),
2564
+ 'value' => 851
2565
+ ),array(
2566
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Ligatures & Caps"),
2567
+ 'value' => 852
2568
+ ),array(
2569
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Lyres"),
2570
+ 'value' => 853
2571
+ ),array(
2572
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts"),
2573
+ 'value' => 854
2574
+ ),array(
2575
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Barrels"),
2576
+ 'value' => 855
2577
+ ),array(
2578
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Bells"),
2579
+ 'value' => 856
2580
+ ),array(
2581
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Mouthpieces"),
2582
+ 'value' => 857
2583
+ ),array(
2584
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Parts > Clarinet Small Parts"),
2585
+ 'value' => 858
2586
+ ),array(
2587
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Pegs & Stands"),
2588
+ 'value' => 859
2589
+ ),array(
2590
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Reeds"),
2591
+ 'value' => 860
2592
+ ),array(
2593
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Clarinet Accessories > Clarinet Straps & Supports"),
2594
+ 'value' => 861
2595
+ ),array(
2596
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories"),
2597
+ 'value' => 862
2598
+ ),array(
2599
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning"),
2600
+ 'value' => 863
2601
+ ),array(
2602
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Care Kits"),
2603
+ 'value' => 864
2604
+ ),array(
2605
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Cleaning Rods"),
2606
+ 'value' => 865
2607
+ ),array(
2608
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Care & Cleaning > Flute Swabs"),
2609
+ 'value' => 866
2610
+ ),array(
2611
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Cases & Gigbags"),
2612
+ 'value' => 867
2613
+ ),array(
2614
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Lyres"),
2615
+ 'value' => 868
2616
+ ),array(
2617
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts"),
2618
+ 'value' => 869
2619
+ ),array(
2620
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts > Flute Headjoints"),
2621
+ 'value' => 870
2622
+ ),array(
2623
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Parts > Flute Small Parts"),
2624
+ 'value' => 871
2625
+ ),array(
2626
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Flute Accessories > Flute Pegs & Stands"),
2627
+ 'value' => 872
2628
+ ),array(
2629
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Harmonica Accessories"),
2630
+ 'value' => 873
2631
+ ),array(
2632
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Harmonica Accessories > Harmonica Cases"),
2633
+ 'value' => 874
2634
+ ),array(
2635
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Harmonica Accessories > Harmonica Holders"),
2636
+ 'value' => 875
2637
+ ),array(
2638
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories"),
2639
+ 'value' => 876
2640
+ ),array(
2641
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning"),
2642
+ 'value' => 877
2643
+ ),array(
2644
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning > Oboe Care Kits"),
2645
+ 'value' => 878
2646
+ ),array(
2647
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Care & Cleaning > Oboe Swabs"),
2648
+ 'value' => 879
2649
+ ),array(
2650
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Cases & Gigbags"),
2651
+ 'value' => 880
2652
+ ),array(
2653
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Parts"),
2654
+ 'value' => 881
2655
+ ),array(
2656
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Parts > Oboe Small Parts"),
2657
+ 'value' => 882
2658
+ ),array(
2659
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Pegs & Stands"),
2660
+ 'value' => 883
2661
+ ),array(
2662
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Reeds"),
2663
+ 'value' => 884
2664
+ ),array(
2665
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Oboe & English Horn Accessories > Oboe Straps & Supports"),
2666
+ 'value' => 885
2667
+ ),array(
2668
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories"),
2669
+ 'value' => 886
2670
+ ),array(
2671
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning"),
2672
+ 'value' => 887
2673
+ ),array(
2674
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Care Kits"),
2675
+ 'value' => 888
2676
+ ),array(
2677
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Pad Savers"),
2678
+ 'value' => 889
2679
+ ),array(
2680
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Care & Cleaning > Saxophone Swabs"),
2681
+ 'value' => 890
2682
+ ),array(
2683
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Cases & Gigbags"),
2684
+ 'value' => 891
2685
+ ),array(
2686
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Ligatures & Caps"),
2687
+ 'value' => 892
2688
+ ),array(
2689
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Lyres"),
2690
+ 'value' => 893
2691
+ ),array(
2692
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts"),
2693
+ 'value' => 894
2694
+ ),array(
2695
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Mouthpieces"),
2696
+ 'value' => 895
2697
+ ),array(
2698
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Necks"),
2699
+ 'value' => 896
2700
+ ),array(
2701
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Parts > Saxophone Small Parts"),
2702
+ 'value' => 897
2703
+ ),array(
2704
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Pegs & Stands"),
2705
+ 'value' => 898
2706
+ ),array(
2707
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Reeds"),
2708
+ 'value' => 899
2709
+ ),array(
2710
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Saxophone Accessories > Saxophone Straps & Supports"),
2711
+ 'value' => 900
2712
+ ),array(
2713
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Woodwind Cork Grease"),
2714
+ 'value' => 901
2715
+ ),array(
2716
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Woodwind Polishing Cloths"),
2717
+ 'value' => 902
2718
+ ),array(
2719
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Woodwind Reed Cases"),
2720
+ 'value' => 903
2721
+ ),array(
2722
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instrument Accessories > Woodwind Instrument Accessories > Woodwind Reed Knives"),
2723
+ 'value' => 904
2724
+ ),array(
2725
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments"),
2726
+ 'value' => 905
2727
+ ),array(
2728
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Accordions & Concertinas"),
2729
+ 'value' => 906
2730
+ ),array(
2731
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Bagpipes"),
2732
+ 'value' => 907
2733
+ ),array(
2734
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass"),
2735
+ 'value' => 908
2736
+ ),array(
2737
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Cornets"),
2738
+ 'value' => 909
2739
+ ),array(
2740
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Euphoniums"),
2741
+ 'value' => 910
2742
+ ),array(
2743
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Flugel Horns"),
2744
+ 'value' => 911
2745
+ ),array(
2746
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > French Horns"),
2747
+ 'value' => 912
2748
+ ),array(
2749
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Mellophones"),
2750
+ 'value' => 913
2751
+ ),array(
2752
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Sousaphones"),
2753
+ 'value' => 914
2754
+ ),array(
2755
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Trombones"),
2756
+ 'value' => 915
2757
+ ),array(
2758
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Trumpets"),
2759
+ 'value' => 916
2760
+ ),array(
2761
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Brass > Tubas"),
2762
+ 'value' => 917
2763
+ ),array(
2764
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments"),
2765
+ 'value' => 918
2766
+ ),array(
2767
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Audio Samplers"),
2768
+ 'value' => 919
2769
+ ),array(
2770
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > MIDI Controllers"),
2771
+ 'value' => 920
2772
+ ),array(
2773
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Musical Keyboards"),
2774
+ 'value' => 921
2775
+ ),array(
2776
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments > Sound Synthesizers"),
2777
+ 'value' => 922
2778
+ ),array(
2779
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion"),
2780
+ 'value' => 923
2781
+ ),array(
2782
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Bass Drums"),
2783
+ 'value' => 924
2784
+ ),array(
2785
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Cymbals"),
2786
+ 'value' => 925
2787
+ ),array(
2788
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Drum Kits"),
2789
+ 'value' => 926
2790
+ ),array(
2791
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Electronic Drums"),
2792
+ 'value' => 927
2793
+ ),array(
2794
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Glockenspiels & Xylophones"),
2795
+ 'value' => 928
2796
+ ),array(
2797
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Gongs"),
2798
+ 'value' => 929
2799
+ ),array(
2800
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion"),
2801
+ 'value' => 930
2802
+ ),array(
2803
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Claves & Castanets"),
2804
+ 'value' => 931
2805
+ ),array(
2806
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Finger & Hand Cymbals"),
2807
+ 'value' => 932
2808
+ ),array(
2809
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Bells"),
2810
+ 'value' => 933
2811
+ ),array(
2812
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Bells & Chimes"),
2813
+ 'value' => 934
2814
+ ),array(
2815
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums"),
2816
+ 'value' => 935
2817
+ ),array(
2818
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Bongos"),
2819
+ 'value' => 936
2820
+ ),array(
2821
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Cajons"),
2822
+ 'value' => 937
2823
+ ),array(
2824
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Congas"),
2825
+ 'value' => 938
2826
+ ),array(
2827
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Frame Drums"),
2828
+ 'value' => 939
2829
+ ),array(
2830
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Goblet Drums"),
2831
+ 'value' => 940
2832
+ ),array(
2833
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Tablas"),
2834
+ 'value' => 941
2835
+ ),array(
2836
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Hand Drums > Talking Drums"),
2837
+ 'value' => 942
2838
+ ),array(
2839
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Blocks"),
2840
+ 'value' => 943
2841
+ ),array(
2842
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Cowbells"),
2843
+ 'value' => 944
2844
+ ),array(
2845
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Scrapers & Ratchets"),
2846
+ 'value' => 945
2847
+ ),array(
2848
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Shakers"),
2849
+ 'value' => 946
2850
+ ),array(
2851
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Musical Triangles"),
2852
+ 'value' => 947
2853
+ ),array(
2854
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Tambourines"),
2855
+ 'value' => 948
2856
+ ),array(
2857
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hand Percussion > Vibraslaps"),
2858
+ 'value' => 949
2859
+ ),array(
2860
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Hi-Hats"),
2861
+ 'value' => 950
2862
+ ),array(
2863
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Practice Pads"),
2864
+ 'value' => 951
2865
+ ),array(
2866
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Snare Drums"),
2867
+ 'value' => 952
2868
+ ),array(
2869
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Percussion > Tom-Toms"),
2870
+ 'value' => 953
2871
+ ),array(
2872
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Pianos"),
2873
+ 'value' => 954
2874
+ ),array(
2875
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments"),
2876
+ 'value' => 955
2877
+ ),array(
2878
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Cellos"),
2879
+ 'value' => 956
2880
+ ),array(
2881
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Guitars"),
2882
+ 'value' => 957
2883
+ ),array(
2884
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Guitars > Acoustic Guitars"),
2885
+ 'value' => 958
2886
+ ),array(
2887
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Guitars > Bass Guitars"),
2888
+ 'value' => 959
2889
+ ),array(
2890
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Guitars > Electric Guitars"),
2891
+ 'value' => 960
2892
+ ),array(
2893
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Harps"),
2894
+ 'value' => 961
2895
+ ),array(
2896
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Upright Basses"),
2897
+ 'value' => 962
2898
+ ),array(
2899
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Violas"),
2900
+ 'value' => 963
2901
+ ),array(
2902
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > String Instruments > Violins"),
2903
+ 'value' => 964
2904
+ ),array(
2905
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds"),
2906
+ 'value' => 965
2907
+ ),array(
2908
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Bassoons"),
2909
+ 'value' => 966
2910
+ ),array(
2911
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Clarinets"),
2912
+ 'value' => 967
2913
+ ),array(
2914
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Flutes"),
2915
+ 'value' => 968
2916
+ ),array(
2917
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Flutes > Fifes"),
2918
+ 'value' => 969
2919
+ ),array(
2920
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Flutophones"),
2921
+ 'value' => 970
2922
+ ),array(
2923
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Harmonicas"),
2924
+ 'value' => 971
2925
+ ),array(
2926
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Jew's Harps"),
2927
+ 'value' => 972
2928
+ ),array(
2929
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Melodicas"),
2930
+ 'value' => 973
2931
+ ),array(
2932
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Musical Pipes"),
2933
+ 'value' => 974
2934
+ ),array(
2935
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Oboes & English Horns"),
2936
+ 'value' => 975
2937
+ ),array(
2938
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Ocarinas"),
2939
+ 'value' => 976
2940
+ ),array(
2941
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Recorders"),
2942
+ 'value' => 977
2943
+ ),array(
2944
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Saxophones"),
2945
+ 'value' => 978
2946
+ ),array(
2947
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Tin Whistles"),
2948
+ 'value' => 979
2949
+ ),array(
2950
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Woodwinds > Train Whistles"),
2951
+ 'value' => 980
2952
+ ),array(
2953
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration"),
2954
+ 'value' => 981
2955
+ ),array(
2956
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving"),
2957
+ 'value' => 982
2958
+ ),array(
2959
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Corsage & Boutonnière Pins"),
2960
+ 'value' => 983
2961
+ ),array(
2962
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Corsages & Boutonnières"),
2963
+ 'value' => 984
2964
+ ),array(
2965
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Fresh Cut Flowers"),
2966
+ 'value' => 985
2967
+ ),array(
2968
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Gift Cards & Certificates"),
2969
+ 'value' => 986
2970
+ ),array(
2971
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping"),
2972
+ 'value' => 987
2973
+ ),array(
2974
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Bows & Ribbons"),
2975
+ 'value' => 988
2976
+ ),array(
2977
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Bags"),
2978
+ 'value' => 989
2979
+ ),array(
2980
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Gift Boxes & Tins"),
2981
+ 'value' => 990
2982
+ ),array(
2983
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Tissue Paper"),
2984
+ 'value' => 991
2985
+ ),array(
2986
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Gift Wrapping > Wrapping Paper"),
2987
+ 'value' => 992
2988
+ ),array(
2989
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Gift Giving > Greeting & Note Cards"),
2990
+ 'value' => 993
2991
+ ),array(
2992
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies"),
2993
+ 'value' => 994
2994
+ ),array(
2995
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Balloon Kits"),
2996
+ 'value' => 995
2997
+ ),array(
2998
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Balloons"),
2999
+ 'value' => 996
3000
+ ),array(
3001
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Banners"),
3002
+ 'value' => 997
3003
+ ),array(
3004
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Beverage Tubs"),
3005
+ 'value' => 998
3006
+ ),array(
3007
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Birthday Candles"),
3008
+ 'value' => 999
3009
+ ),array(
3010
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Cocktail Decorations"),
3011
+ 'value' => 1000
3012
+ ),array(
3013
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Confetti"),
3014
+ 'value' => 1001
3015
+ ),array(
3016
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games"),
3017
+ 'value' => 1002
3018
+ ),array(
3019
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games > Beer Pong"),
3020
+ 'value' => 1003
3021
+ ),array(
3022
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Games > Beer Pong > Beer Pong Tables"),
3023
+ 'value' => 1004
3024
+ ),array(
3025
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Drinking Straws & Stirrers"),
3026
+ 'value' => 1005
3027
+ ),array(
3028
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Envelope Seals"),
3029
+ 'value' => 1006
3030
+ ),array(
3031
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Event Programs"),
3032
+ 'value' => 1007
3033
+ ),array(
3034
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Invitations"),
3035
+ 'value' => 1008
3036
+ ),array(
3037
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Invitations > Birthday Invitations"),
3038
+ 'value' => 1009
3039
+ ),array(
3040
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Invitations > Wedding Invitations"),
3041
+ 'value' => 1010
3042
+ ),array(
3043
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Noisemakers & Party Blowers"),
3044
+ 'value' => 1011
3045
+ ),array(
3046
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Party Favors"),
3047
+ 'value' => 1012
3048
+ ),array(
3049
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Party Favors > Wedding Favors"),
3050
+ 'value' => 1013
3051
+ ),array(
3052
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Party Games"),
3053
+ 'value' => 1014
3054
+ ),array(
3055
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Party Hats"),
3056
+ 'value' => 1015
3057
+ ),array(
3058
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Piñatas"),
3059
+ 'value' => 1016
3060
+ ),array(
3061
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Place Card Holders"),
3062
+ 'value' => 1017
3063
+ ),array(
3064
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Place Cards"),
3065
+ 'value' => 1018
3066
+ ),array(
3067
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Response Cards"),
3068
+ 'value' => 1019
3069
+ ),array(
3070
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Response Cards > Wedding Response Cards"),
3071
+ 'value' => 1020
3072
+ ),array(
3073
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Sparklers"),
3074
+ 'value' => 1021
3075
+ ),array(
3076
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Spray String"),
3077
+ 'value' => 1022
3078
+ ),array(
3079
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Streamers"),
3080
+ 'value' => 1023
3081
+ ),array(
3082
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Party Supplies > Wedding Card Boxes & Holders"),
3083
+ 'value' => 1024
3084
+ ),array(
3085
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Special Effects"),
3086
+ 'value' => 1025
3087
+ ),array(
3088
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Special Effects > Disco Balls"),
3089
+ 'value' => 1026
3090
+ ),array(
3091
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Special Effects > Fog Machines"),
3092
+ 'value' => 1027
3093
+ ),array(
3094
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Controllers"),
3095
+ 'value' => 1028
3096
+ ),array(
3097
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Special Effects > Special Effects Lighting"),
3098
+ 'value' => 1029
3099
+ ),array(
3100
+ 'label' => Mage::helper('richsnippet')->__("Arts & Entertainment > Party & Celebration > Trophies & Awards"),
3101
+ 'value' => 1030
3102
+ ),array(
3103
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler"),
3104
+ 'value' => 1031
3105
+ ),array(
3106
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby & Toddler Gift Sets"),
3107
+ 'value' => 1032
3108
+ ),array(
3109
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Bathing"),
3110
+ 'value' => 1033
3111
+ ),array(
3112
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Bathing > Baby Bathtubs & Bath Seats"),
3113
+ 'value' => 1034
3114
+ ),array(
3115
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Bathing > Shower Visors"),
3116
+ 'value' => 1035
3117
+ ),array(
3118
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Health"),
3119
+ 'value' => 1036
3120
+ ),array(
3121
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Health > Baby Health & Grooming Kits"),
3122
+ 'value' => 1037
3123
+ ),array(
3124
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Health > Nasal Aspirators"),
3125
+ 'value' => 1038
3126
+ ),array(
3127
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Health > Pacifier Clips & Holders"),
3128
+ 'value' => 1039
3129
+ ),array(
3130
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Health > Pacifier Wipes"),
3131
+ 'value' => 1040
3132
+ ),array(
3133
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Health > Pacifiers & Teethers"),
3134
+ 'value' => 1041
3135
+ ),array(
3136
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Safety"),
3137
+ 'value' => 1042
3138
+ ),array(
3139
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Safety > Baby & Pet Gate Accessories"),
3140
+ 'value' => 1043
3141
+ ),array(
3142
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Safety > Baby & Pet Gates"),
3143
+ 'value' => 1044
3144
+ ),array(
3145
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Safety > Baby Monitors"),
3146
+ 'value' => 1045
3147
+ ),array(
3148
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Safety > Baby Safety Harnesses & Leashes"),
3149
+ 'value' => 1046
3150
+ ),array(
3151
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Safety > Baby Safety Locks & Guards"),
3152
+ 'value' => 1047
3153
+ ),array(
3154
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Safety > Baby Safety Rails"),
3155
+ 'value' => 1048
3156
+ ),array(
3157
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys"),
3158
+ 'value' => 1049
3159
+ ),array(
3160
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Alphabet Toys"),
3161
+ 'value' => 1050
3162
+ ),array(
3163
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Baby Activity Toys"),
3164
+ 'value' => 1051
3165
+ ),array(
3166
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Baby Bouncers & Rockers"),
3167
+ 'value' => 1052
3168
+ ),array(
3169
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Baby Jumpers & Swings"),
3170
+ 'value' => 1053
3171
+ ),array(
3172
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Baby Mobile Accessories"),
3173
+ 'value' => 1054
3174
+ ),array(
3175
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Baby Mobiles"),
3176
+ 'value' => 1055
3177
+ ),array(
3178
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Baby Soothers"),
3179
+ 'value' => 1056
3180
+ ),array(
3181
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Baby Walkers & Entertainers"),
3182
+ 'value' => 1057
3183
+ ),array(
3184
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Play Mats & Gyms"),
3185
+ 'value' => 1058
3186
+ ),array(
3187
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Play Yards"),
3188
+ 'value' => 1059
3189
+ ),array(
3190
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Push & Pull Toys"),
3191
+ 'value' => 1060
3192
+ ),array(
3193
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Rattles"),
3194
+ 'value' => 1061
3195
+ ),array(
3196
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Toys > Sorting & Stacking Toys"),
3197
+ 'value' => 1062
3198
+ ),array(
3199
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport"),
3200
+ 'value' => 1063
3201
+ ),array(
3202
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport > Baby & Toddler Car Seats"),
3203
+ 'value' => 1064
3204
+ ),array(
3205
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport > Baby Carriers"),
3206
+ 'value' => 1065
3207
+ ),array(
3208
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport > Baby Strollers"),
3209
+ 'value' => 1066
3210
+ ),array(
3211
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport Accessories"),
3212
+ 'value' => 1067
3213
+ ),array(
3214
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport Accessories > Baby & Toddler Car Seat Accessories"),
3215
+ 'value' => 1068
3216
+ ),array(
3217
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport Accessories > Baby Carrier Accessories"),
3218
+ 'value' => 1069
3219
+ ),array(
3220
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport Accessories > Baby Stroller Accessories"),
3221
+ 'value' => 1070
3222
+ ),array(
3223
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Baby Transport Accessories > Shopping Cart & High Chair Covers"),
3224
+ 'value' => 1071
3225
+ ),array(
3226
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering"),
3227
+ 'value' => 1072
3228
+ ),array(
3229
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Baby Wipe Dispensers & Warmers"),
3230
+ 'value' => 1073
3231
+ ),array(
3232
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Baby Wipes"),
3233
+ 'value' => 1074
3234
+ ),array(
3235
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Changing Mats & Trays"),
3236
+ 'value' => 1075
3237
+ ),array(
3238
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diaper Kits"),
3239
+ 'value' => 1076
3240
+ ),array(
3241
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diaper Liners"),
3242
+ 'value' => 1077
3243
+ ),array(
3244
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diaper Organizers"),
3245
+ 'value' => 1078
3246
+ ),array(
3247
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diaper Pail Accessories"),
3248
+ 'value' => 1079
3249
+ ),array(
3250
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diaper Pails"),
3251
+ 'value' => 1080
3252
+ ),array(
3253
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diaper Rash Treatments"),
3254
+ 'value' => 1081
3255
+ ),array(
3256
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diaper Wet Bags"),
3257
+ 'value' => 1082
3258
+ ),array(
3259
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Diapering > Diapers"),
3260
+ 'value' => 1083
3261
+ ),array(
3262
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding"),
3263
+ 'value' => 1084
3264
+ ),array(
3265
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby & Toddler Food"),
3266
+ 'value' => 1085
3267
+ ),array(
3268
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Cereal"),
3269
+ 'value' => 1086
3270
+ ),array(
3271
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Food"),
3272
+ 'value' => 1087
3273
+ ),array(
3274
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Formula"),
3275
+ 'value' => 1088
3276
+ ),array(
3277
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Juice"),
3278
+ 'value' => 1089
3279
+ ),array(
3280
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby & Toddler Food > Baby Snacks"),
3281
+ 'value' => 1090
3282
+ ),array(
3283
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby Bottle Nipples"),
3284
+ 'value' => 1091
3285
+ ),array(
3286
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby Bottles"),
3287
+ 'value' => 1092
3288
+ ),array(
3289
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Baby Care Timers"),
3290
+ 'value' => 1093
3291
+ ),array(
3292
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Bibs"),
3293
+ 'value' => 1094
3294
+ ),array(
3295
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Bottle Warmers & Sterilizers"),
3296
+ 'value' => 1095
3297
+ ),array(
3298
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Breast Milk Storage Containers"),
3299
+ 'value' => 1096
3300
+ ),array(
3301
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Breast Pumps"),
3302
+ 'value' => 1097
3303
+ ),array(
3304
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Burp Cloths"),
3305
+ 'value' => 1098
3306
+ ),array(
3307
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Nipple Shields"),
3308
+ 'value' => 1099
3309
+ ),array(
3310
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Nursing Covers"),
3311
+ 'value' => 1100
3312
+ ),array(
3313
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Nursing Pads"),
3314
+ 'value' => 1101
3315
+ ),array(
3316
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Nursing Pillows"),
3317
+ 'value' => 1102
3318
+ ),array(
3319
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Nursing & Feeding > Sippy Cups"),
3320
+ 'value' => 1103
3321
+ ),array(
3322
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Potty Training"),
3323
+ 'value' => 1104
3324
+ ),array(
3325
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Potty Training > Potty Seats"),
3326
+ 'value' => 1105
3327
+ ),array(
3328
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Potty Training > Potty Training Kits"),
3329
+ 'value' => 1106
3330
+ ),array(
3331
+ 'label' => Mage::helper('richsnippet')->__("Baby & Toddler > Swaddling Blankets"),
3332
+ 'value' => 1107
3333
+ ),array(
3334
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial"),
3335
+ 'value' => 1108
3336
+ ),array(
3337
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Advertising & Marketing"),
3338
+ 'value' => 1109
3339
+ ),array(
3340
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Advertising & Marketing > Brochures"),
3341
+ 'value' => 1110
3342
+ ),array(
3343
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Advertising & Marketing > Trade Show Counters"),
3344
+ 'value' => 1111
3345
+ ),array(
3346
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Advertising & Marketing > Trade Show Displays"),
3347
+ 'value' => 1112
3348
+ ),array(
3349
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Agriculture"),
3350
+ 'value' => 1113
3351
+ ),array(
3352
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Agriculture > Animal Husbandry"),
3353
+ 'value' => 1114
3354
+ ),array(
3355
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Agriculture > Animal Husbandry > Chicken Coops"),
3356
+ 'value' => 1115
3357
+ ),array(
3358
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Agriculture > Animal Husbandry > Livestock Feeders"),
3359
+ 'value' => 1116
3360
+ ),array(
3361
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Construction"),
3362
+ 'value' => 1117
3363
+ ),array(
3364
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Construction > Surveying"),
3365
+ 'value' => 1118
3366
+ ),array(
3367
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Dentistry"),
3368
+ 'value' => 1119
3369
+ ),array(
3370
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Dentistry > Dental Cement"),
3371
+ 'value' => 1120
3372
+ ),array(
3373
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Dentistry > Dental Tools"),
3374
+ 'value' => 1121
3375
+ ),array(
3376
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Dentistry > Dental Tools > Dental Mirrors"),
3377
+ 'value' => 1122
3378
+ ),array(
3379
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Dentistry > Dental Tools > Dental Tool Sets"),
3380
+ 'value' => 1123
3381
+ ),array(
3382
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Film & Television"),
3383
+ 'value' => 1124
3384
+ ),array(
3385
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Finance & Insurance"),
3386
+ 'value' => 1125
3387
+ ),array(
3388
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Finance & Insurance > Bullion"),
3389
+ 'value' => 1126
3390
+ ),array(
3391
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service"),
3392
+ 'value' => 1127
3393
+ ),array(
3394
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Bakery Boxes"),
3395
+ 'value' => 1128
3396
+ ),array(
3397
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Bus Tubs"),
3398
+ 'value' => 1129
3399
+ ),array(
3400
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Concession Food Containers"),
3401
+ 'value' => 1130
3402
+ ),array(
3403
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Cutlery Dispensers"),
3404
+ 'value' => 1131
3405
+ ),array(
3406
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Serveware"),
3407
+ 'value' => 1132
3408
+ ),array(
3409
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Serveware > Disposable Serving Trays"),
3410
+ 'value' => 1133
3411
+ ),array(
3412
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Tableware"),
3413
+ 'value' => 1134
3414
+ ),array(
3415
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Tableware > Disposable Bowls"),
3416
+ 'value' => 1135
3417
+ ),array(
3418
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Tableware > Disposable Cups"),
3419
+ 'value' => 1136
3420
+ ),array(
3421
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Tableware > Disposable Cutlery"),
3422
+ 'value' => 1137
3423
+ ),array(
3424
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Disposable Tableware > Disposable Plates"),
3425
+ 'value' => 1138
3426
+ ),array(
3427
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Food Service Baskets"),
3428
+ 'value' => 1139
3429
+ ),array(
3430
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Food Service Carts"),
3431
+ 'value' => 1140
3432
+ ),array(
3433
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Food Washers & Dryers"),
3434
+ 'value' => 1141
3435
+ ),array(
3436
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Hot Dog Rollers"),
3437
+ 'value' => 1142
3438
+ ),array(
3439
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Ice Bins"),
3440
+ 'value' => 1143
3441
+ ),array(
3442
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Plate & Dish Warmers"),
3443
+ 'value' => 1144
3444
+ ),array(
3445
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Take-Out Containers"),
3446
+ 'value' => 1145
3447
+ ),array(
3448
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Tilt Skillets"),
3449
+ 'value' => 1146
3450
+ ),array(
3451
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Food Service > Vending Machines"),
3452
+ 'value' => 1147
3453
+ ),array(
3454
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Forestry & Logging"),
3455
+ 'value' => 1148
3456
+ ),array(
3457
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Hairdressing & Cosmetology"),
3458
+ 'value' => 1149
3459
+ ),array(
3460
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Hairdressing & Cosmetology > Pedicure Chairs"),
3461
+ 'value' => 1150
3462
+ ),array(
3463
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Hairdressing & Cosmetology > Salon Chairs"),
3464
+ 'value' => 1151
3465
+ ),array(
3466
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Heavy Machinery"),
3467
+ 'value' => 1152
3468
+ ),array(
3469
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Heavy Machinery > Chippers"),
3470
+ 'value' => 1153
3471
+ ),array(
3472
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Hotel & Hospitality"),
3473
+ 'value' => 1154
3474
+ ),array(
3475
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Industrial Storage"),
3476
+ 'value' => 1155
3477
+ ),array(
3478
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Industrial Storage > Industrial Cabinets"),
3479
+ 'value' => 1156
3480
+ ),array(
3481
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Industrial Storage > Industrial Shelving"),
3482
+ 'value' => 1157
3483
+ ),array(
3484
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Industrial Storage > Shipping Containers"),
3485
+ 'value' => 1158
3486
+ ),array(
3487
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Industrial Storage Accessories"),
3488
+ 'value' => 1159
3489
+ ),array(
3490
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Law Enforcement"),
3491
+ 'value' => 1160
3492
+ ),array(
3493
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Law Enforcement > Batons"),
3494
+ 'value' => 1161
3495
+ ),array(
3496
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Law Enforcement > Cuffs"),
3497
+ 'value' => 1162
3498
+ ),array(
3499
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Law Enforcement > Cuffs > Ankle Cuffs"),
3500
+ 'value' => 1163
3501
+ ),array(
3502
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Law Enforcement > Cuffs > Handcuffs"),
3503
+ 'value' => 1164
3504
+ ),array(
3505
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Law Enforcement > Cuffs > Leg Cuffs"),
3506
+ 'value' => 1165
3507
+ ),array(
3508
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Law Enforcement > Metal Detectors"),
3509
+ 'value' => 1166
3510
+ ),array(
3511
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Manufacturing"),
3512
+ 'value' => 1167
3513
+ ),array(
3514
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Material Handling"),
3515
+ 'value' => 1168
3516
+ ),array(
3517
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Material Handling > Conveyors"),
3518
+ 'value' => 1169
3519
+ ),array(
3520
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Material Handling > Fork Lifts"),
3521
+ 'value' => 1170
3522
+ ),array(
3523
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical"),
3524
+ 'value' => 1171
3525
+ ),array(
3526
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Hospital Curtains"),
3527
+ 'value' => 1172
3528
+ ),array(
3529
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Hospital Gowns"),
3530
+ 'value' => 1173
3531
+ ),array(
3532
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Bedding"),
3533
+ 'value' => 1174
3534
+ ),array(
3535
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment"),
3536
+ 'value' => 1175
3537
+ ),array(
3538
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Automated External Defibrillators"),
3539
+ 'value' => 1176
3540
+ ),array(
3541
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Medical Forceps"),
3542
+ 'value' => 1177
3543
+ ),array(
3544
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Otoscopes & Ophthalmoscopes"),
3545
+ 'value' => 1178
3546
+ ),array(
3547
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Patient Lifts"),
3548
+ 'value' => 1179
3549
+ ),array(
3550
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Reflex Hammers"),
3551
+ 'value' => 1180
3552
+ ),array(
3553
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Scalpels"),
3554
+ 'value' => 1181
3555
+ ),array(
3556
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Stethoscopes"),
3557
+ 'value' => 1182
3558
+ ),array(
3559
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Vital Signs Monitor Accessories"),
3560
+ 'value' => 1183
3561
+ ),array(
3562
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Equipment > Vital Signs Monitors"),
3563
+ 'value' => 1184
3564
+ ),array(
3565
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture"),
3566
+ 'value' => 1185
3567
+ ),array(
3568
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Chiropractic Tables"),
3569
+ 'value' => 1186
3570
+ ),array(
3571
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Examination Chairs"),
3572
+ 'value' => 1187
3573
+ ),array(
3574
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Examination Chairs > Dental Chairs"),
3575
+ 'value' => 1188
3576
+ ),array(
3577
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Examination Chairs > Gynecological Chairs"),
3578
+ 'value' => 1189
3579
+ ),array(
3580
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Examination Chairs > Optometry Chairs"),
3581
+ 'value' => 1190
3582
+ ),array(
3583
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Homecare & Hospital Beds"),
3584
+ 'value' => 1191
3585
+ ),array(
3586
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Medical Cabinets"),
3587
+ 'value' => 1192
3588
+ ),array(
3589
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Medical Cabinets > Narcotics Boxes"),
3590
+ 'value' => 1193
3591
+ ),array(
3592
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Medical Carts"),
3593
+ 'value' => 1194
3594
+ ),array(
3595
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Medical Carts > Crash Carts"),
3596
+ 'value' => 1195
3597
+ ),array(
3598
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Medical Carts > IV Poles & Carts"),
3599
+ 'value' => 1196
3600
+ ),array(
3601
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Furniture > Surgical Tables"),
3602
+ 'value' => 1197
3603
+ ),array(
3604
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Supplies"),
3605
+ 'value' => 1198
3606
+ ),array(
3607
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Supplies > Disposable Gloves"),
3608
+ 'value' => 1199
3609
+ ),array(
3610
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Supplies > Finger Cots"),
3611
+ 'value' => 1200
3612
+ ),array(
3613
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Supplies > Medical Masks"),
3614
+ 'value' => 1201
3615
+ ),array(
3616
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Supplies > Tongue Depressors"),
3617
+ 'value' => 1202
3618
+ ),array(
3619
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Teaching Equipment"),
3620
+ 'value' => 1203
3621
+ ),array(
3622
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Medical Teaching Equipment > CPR Mannequins"),
3623
+ 'value' => 1204
3624
+ ),array(
3625
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Scrub Caps"),
3626
+ 'value' => 1205
3627
+ ),array(
3628
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Scrubs"),
3629
+ 'value' => 1206
3630
+ ),array(
3631
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Medical > Surgical Gowns"),
3632
+ 'value' => 1207
3633
+ ),array(
3634
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Mining & Quarrying"),
3635
+ 'value' => 1208
3636
+ ),array(
3637
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing"),
3638
+ 'value' => 1209
3639
+ ),array(
3640
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing > Piercing Supplies"),
3641
+ 'value' => 1210
3642
+ ),array(
3643
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing > Piercing Supplies > Piercing Needles"),
3644
+ 'value' => 1211
3645
+ ),array(
3646
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing > Tattooing Supplies"),
3647
+ 'value' => 1212
3648
+ ),array(
3649
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattoo Cover-Ups"),
3650
+ 'value' => 1213
3651
+ ),array(
3652
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Inks"),
3653
+ 'value' => 1214
3654
+ ),array(
3655
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Machines"),
3656
+ 'value' => 1215
3657
+ ),array(
3658
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Piercing & Tattooing > Tattooing Supplies > Tattooing Needles"),
3659
+ 'value' => 1216
3660
+ ),array(
3661
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail"),
3662
+ 'value' => 1217
3663
+ ),array(
3664
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Clothing Display Racks"),
3665
+ 'value' => 1218
3666
+ ),array(
3667
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Mannequin Parts"),
3668
+ 'value' => 1219
3669
+ ),array(
3670
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Mannequins"),
3671
+ 'value' => 1220
3672
+ ),array(
3673
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling"),
3674
+ 'value' => 1221
3675
+ ),array(
3676
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Banknote Verifiers"),
3677
+ 'value' => 1222
3678
+ ),array(
3679
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Cash Registers & POS Equipment"),
3680
+ 'value' => 1223
3681
+ ),array(
3682
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Cash Registers & POS Equipment > Cash Drawers"),
3683
+ 'value' => 1224
3684
+ ),array(
3685
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Cash Registers & POS Equipment > Credit Card Readers"),
3686
+ 'value' => 1225
3687
+ ),array(
3688
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Cash Registers & POS Equipment > Signature Capture Pads"),
3689
+ 'value' => 1226
3690
+ ),array(
3691
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Coin & Bill Counters"),
3692
+ 'value' => 1227
3693
+ ),array(
3694
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Money Changers"),
3695
+ 'value' => 1228
3696
+ ),array(
3697
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Money Deposit Bags"),
3698
+ 'value' => 1229
3699
+ ),array(
3700
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Money Handling > Paper Coin Wrappers & Bill Straps"),
3701
+ 'value' => 1230
3702
+ ),array(
3703
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Plastic Bags"),
3704
+ 'value' => 1231
3705
+ ),array(
3706
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Pricing Guns"),
3707
+ 'value' => 1232
3708
+ ),array(
3709
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Retail > Retail Display Cases"),
3710
+ 'value' => 1233
3711
+ ),array(
3712
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory"),
3713
+ 'value' => 1234
3714
+ ),array(
3715
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Biochemicals"),
3716
+ 'value' => 1235
3717
+ ),array(
3718
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Dissection Kits"),
3719
+ 'value' => 1236
3720
+ ),array(
3721
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Chemicals"),
3722
+ 'value' => 1237
3723
+ ),array(
3724
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment"),
3725
+ 'value' => 1238
3726
+ ),array(
3727
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Autoclaves"),
3728
+ 'value' => 1239
3729
+ ),array(
3730
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Centrifuges"),
3731
+ 'value' => 1240
3732
+ ),array(
3733
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Dry Ice Makers"),
3734
+ 'value' => 1241
3735
+ ),array(
3736
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Blenders"),
3737
+ 'value' => 1242
3738
+ ),array(
3739
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Hot Plates"),
3740
+ 'value' => 1243
3741
+ ),array(
3742
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Laboratory Ovens"),
3743
+ 'value' => 1244
3744
+ ),array(
3745
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories"),
3746
+ 'value' => 1245
3747
+ ),array(
3748
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Cameras"),
3749
+ 'value' => 1246
3750
+ ),array(
3751
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Eyepieces & Adapters"),
3752
+ 'value' => 1247
3753
+ ),array(
3754
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Objective Lenses"),
3755
+ 'value' => 1248
3756
+ ),array(
3757
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Replacement Bulbs"),
3758
+ 'value' => 1249
3759
+ ),array(
3760
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscope Accessories > Microscope Slides"),
3761
+ 'value' => 1250
3762
+ ),array(
3763
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microscopes"),
3764
+ 'value' => 1251
3765
+ ),array(
3766
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Microtomes"),
3767
+ 'value' => 1252
3768
+ ),array(
3769
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Spectrometer Accessories"),
3770
+ 'value' => 1253
3771
+ ),array(
3772
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Spectrometers"),
3773
+ 'value' => 1254
3774
+ ),array(
3775
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Equipment > Spectrometers > Spectrophotometers"),
3776
+ 'value' => 1255
3777
+ ),array(
3778
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies"),
3779
+ 'value' => 1256
3780
+ ),array(
3781
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Beakers"),
3782
+ 'value' => 1257
3783
+ ),array(
3784
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Graduated Cylinders"),
3785
+ 'value' => 1258
3786
+ ),array(
3787
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Laboratory Flasks"),
3788
+ 'value' => 1259
3789
+ ),array(
3790
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Petri Dishes"),
3791
+ 'value' => 1260
3792
+ ),array(
3793
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Pipettes"),
3794
+ 'value' => 1261
3795
+ ),array(
3796
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Test Tube Racks"),
3797
+ 'value' => 1262
3798
+ ),array(
3799
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Test Tubes"),
3800
+ 'value' => 1263
3801
+ ),array(
3802
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Science & Laboratory > Laboratory Supplies > Wash Bottles"),
3803
+ 'value' => 1264
3804
+ ),array(
3805
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage"),
3806
+ 'value' => 1265
3807
+ ),array(
3808
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Business Hour Signs"),
3809
+ 'value' => 1266
3810
+ ),array(
3811
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Electronic Signs"),
3812
+ 'value' => 1267
3813
+ ),array(
3814
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Electronic Signs > LED Signs"),
3815
+ 'value' => 1268
3816
+ ),array(
3817
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Electronic Signs > Neon Signs"),
3818
+ 'value' => 1269
3819
+ ),array(
3820
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Emergency & Exit Signs"),
3821
+ 'value' => 1270
3822
+ ),array(
3823
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Facility Identification Signs"),
3824
+ 'value' => 1271
3825
+ ),array(
3826
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Open & Closed Signs"),
3827
+ 'value' => 1272
3828
+ ),array(
3829
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Parking Signs & Permits"),
3830
+ 'value' => 1273
3831
+ ),array(
3832
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Policy Signs"),
3833
+ 'value' => 1274
3834
+ ),array(
3835
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Retail & Sale Signs"),
3836
+ 'value' => 1275
3837
+ ),array(
3838
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Road & Traffic Signs"),
3839
+ 'value' => 1276
3840
+ ),array(
3841
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Safety & Warning Signs"),
3842
+ 'value' => 1277
3843
+ ),array(
3844
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Security Signs"),
3845
+ 'value' => 1278
3846
+ ),array(
3847
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Signage > Sidewalk & Yard Signs"),
3848
+ 'value' => 1279
3849
+ ),array(
3850
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear"),
3851
+ 'value' => 1280
3852
+ ),array(
3853
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Bullet Proof Vests"),
3854
+ 'value' => 1281
3855
+ ),array(
3856
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Dust Masks"),
3857
+ 'value' => 1282
3858
+ ),array(
3859
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Fire Repellent Clothing"),
3860
+ 'value' => 1283
3861
+ ),array(
3862
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Fireman's Masks"),
3863
+ 'value' => 1284
3864
+ ),array(
3865
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Gas Masks & Respirators"),
3866
+ 'value' => 1285
3867
+ ),array(
3868
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Hardhats"),
3869
+ 'value' => 1286
3870
+ ),array(
3871
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Hazardous Material Suits"),
3872
+ 'value' => 1287
3873
+ ),array(
3874
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > High-Visibility Clothing"),
3875
+ 'value' => 1288
3876
+ ),array(
3877
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Protective Aprons"),
3878
+ 'value' => 1289
3879
+ ),array(
3880
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Protective Eyewear"),
3881
+ 'value' => 1290
3882
+ ),array(
3883
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Safety Gloves"),
3884
+ 'value' => 1291
3885
+ ),array(
3886
+ 'label' => Mage::helper('richsnippet')->__("Business & Industrial > Work Safety Protective Gear > Safety Tethers"),
3887
+ 'value' => 1292
3888
+ ),array(
3889
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics"),
3890
+ 'value' => 1293
3891
+ ),array(
3892
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories"),
3893
+ 'value' => 1294
3894
+ ),array(
3895
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories"),
3896
+ 'value' => 1295
3897
+ ),array(
3898
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories > Lens & Filter Adapters"),
3899
+ 'value' => 1296
3900
+ ),array(
3901
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories > Lens Bags"),
3902
+ 'value' => 1297
3903
+ ),array(
3904
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories > Lens Caps"),
3905
+ 'value' => 1298
3906
+ ),array(
3907
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories > Lens Converters"),
3908
+ 'value' => 1299
3909
+ ),array(
3910
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories > Lens Filters"),
3911
+ 'value' => 1300
3912
+ ),array(
3913
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories > Lens Filters > Close-Up Filters"),
3914
+ 'value' => 1301
3915
+ ),array(
3916
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lens Accessories > Lens Hoods"),
3917
+ 'value' => 1302
3918
+ ),array(
3919
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lenses"),
3920
+ 'value' => 1303
3921
+ ),array(
3922
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lenses > Camera Lenses"),
3923
+ 'value' => 1304
3924
+ ),array(
3925
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lenses > Surveillance Camera Lenses"),
3926
+ 'value' => 1305
3927
+ ),array(
3928
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera & Optic Lenses > Video Camera Lenses"),
3929
+ 'value' => 1306
3930
+ ),array(
3931
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories"),
3932
+ 'value' => 1307
3933
+ ),array(
3934
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Bags"),
3935
+ 'value' => 1308
3936
+ ),array(
3937
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Bags > Still Camera Bags"),
3938
+ 'value' => 1309
3939
+ ),array(
3940
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Bags > Video Camera Bags"),
3941
+ 'value' => 1310
3942
+ ),array(
3943
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Film"),
3944
+ 'value' => 1311
3945
+ ),array(
3946
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Flash Accessories"),
3947
+ 'value' => 1312
3948
+ ),array(
3949
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Flashes"),
3950
+ 'value' => 1313
3951
+ ),array(
3952
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Handles"),
3953
+ 'value' => 1314
3954
+ ),array(
3955
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Mounts"),
3956
+ 'value' => 1315
3957
+ ),array(
3958
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Remote Controls"),
3959
+ 'value' => 1316
3960
+ ),array(
3961
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Camera Straps"),
3962
+ 'value' => 1317
3963
+ ),array(
3964
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Flash Brackets"),
3965
+ 'value' => 1318
3966
+ ),array(
3967
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Surveillance Camera Accessories"),
3968
+ 'value' => 1319
3969
+ ),array(
3970
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Underwater Camera Housings"),
3971
+ 'value' => 1320
3972
+ ),array(
3973
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Underwater Camera Housings > Underwater Still Camera Housings"),
3974
+ 'value' => 1321
3975
+ ),array(
3976
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Underwater Camera Housings > Underwater Video Camera Housings"),
3977
+ 'value' => 1322
3978
+ ),array(
3979
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Camera Accessories > Video Camera Lights"),
3980
+ 'value' => 1323
3981
+ ),array(
3982
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories"),
3983
+ 'value' => 1324
3984
+ ),array(
3985
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Binocular & Monocular Accessories"),
3986
+ 'value' => 1325
3987
+ ),array(
3988
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Night Vision Optic Accessories"),
3989
+ 'value' => 1326
3990
+ ),array(
3991
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Optics Bags & Cases"),
3992
+ 'value' => 1327
3993
+ ),array(
3994
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Rangefinder Accessories"),
3995
+ 'value' => 1328
3996
+ ),array(
3997
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Spotting Scope Accessories"),
3998
+ 'value' => 1329
3999
+ ),array(
4000
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Spotting Scope Accessories > Scope Eyepieces"),
4001
+ 'value' => 1330
4002
+ ),array(
4003
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Telescope Accessories"),
4004
+ 'value' => 1331
4005
+ ),array(
4006
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Thermal Optic Accessories"),
4007
+ 'value' => 1332
4008
+ ),array(
4009
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Optic Accessories > Weapon Scope Accessories"),
4010
+ 'value' => 1333
4011
+ ),array(
4012
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories"),
4013
+ 'value' => 1334
4014
+ ),array(
4015
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod & Monopod Cases"),
4016
+ 'value' => 1335
4017
+ ),array(
4018
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod & Monopod Heads"),
4019
+ 'value' => 1336
4020
+ ),array(
4021
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Tripod & Monopod Accessories > Tripod Collars & Mounts"),
4022
+ 'value' => 1337
4023
+ ),array(
4024
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Camera & Optic Accessories > Tripods & Monopods"),
4025
+ 'value' => 1338
4026
+ ),array(
4027
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras"),
4028
+ 'value' => 1339
4029
+ ),array(
4030
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Digital Cameras"),
4031
+ 'value' => 1340
4032
+ ),array(
4033
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Digital Cameras > Digital Point & Shoot Cameras"),
4034
+ 'value' => 1341
4035
+ ),array(
4036
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Digital Cameras > Digital SLRs"),
4037
+ 'value' => 1342
4038
+ ),array(
4039
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Digital Cameras > Mirrorless System Digital Cameras"),
4040
+ 'value' => 1343
4041
+ ),array(
4042
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Disposable Cameras"),
4043
+ 'value' => 1344
4044
+ ),array(
4045
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Film Cameras"),
4046
+ 'value' => 1345
4047
+ ),array(
4048
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Film Cameras > Instant Cameras"),
4049
+ 'value' => 1346
4050
+ ),array(
4051
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Surveillance Cameras"),
4052
+ 'value' => 1347
4053
+ ),array(
4054
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Surveillance Cameras > Hidden Cameras"),
4055
+ 'value' => 1348
4056
+ ),array(
4057
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Trail Cameras"),
4058
+ 'value' => 1349
4059
+ ),array(
4060
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Video Cameras"),
4061
+ 'value' => 1350
4062
+ ),array(
4063
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Cameras > Webcams"),
4064
+ 'value' => 1351
4065
+ ),array(
4066
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics"),
4067
+ 'value' => 1352
4068
+ ),array(
4069
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Binoculars"),
4070
+ 'value' => 1353
4071
+ ),array(
4072
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Binoculars > Opera Glasses"),
4073
+ 'value' => 1354
4074
+ ),array(
4075
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Monoculars"),
4076
+ 'value' => 1355
4077
+ ),array(
4078
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Rangefinders"),
4079
+ 'value' => 1356
4080
+ ),array(
4081
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Scopes"),
4082
+ 'value' => 1357
4083
+ ),array(
4084
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Scopes > Spotting Scopes"),
4085
+ 'value' => 1358
4086
+ ),array(
4087
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Scopes > Telescopes"),
4088
+ 'value' => 1359
4089
+ ),array(
4090
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Optics > Scopes > Weapon Scopes & Sights"),
4091
+ 'value' => 1360
4092
+ ),array(
4093
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography"),
4094
+ 'value' => 1361
4095
+ ),array(
4096
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom"),
4097
+ 'value' => 1362
4098
+ ),array(
4099
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment"),
4100
+ 'value' => 1363
4101
+ ),array(
4102
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Copystands"),
4103
+ 'value' => 1364
4104
+ ),array(
4105
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Darkroom Sinks"),
4106
+ 'value' => 1365
4107
+ ),array(
4108
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Developing Tanks & Reels"),
4109
+ 'value' => 1366
4110
+ ),array(
4111
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Print Trays, Washers & Dryers"),
4112
+ 'value' => 1367
4113
+ ),array(
4114
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Developing & Processing Equipment > Retouching Equipment & Supplies"),
4115
+ 'value' => 1368
4116
+ ),array(
4117
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Enlarging Equipment"),
4118
+ 'value' => 1369
4119
+ ),array(
4120
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Darkroom Easels"),
4121
+ 'value' => 1370
4122
+ ),array(
4123
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Darkroom Timers"),
4124
+ 'value' => 1371
4125
+ ),array(
4126
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Focusing Aids"),
4127
+ 'value' => 1372
4128
+ ),array(
4129
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Photographic Analyzers"),
4130
+ 'value' => 1373
4131
+ ),array(
4132
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Enlarging Equipment > Photographic Enlargers"),
4133
+ 'value' => 1374
4134
+ ),array(
4135
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Photographic Chemicals"),
4136
+ 'value' => 1375
4137
+ ),array(
4138
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Photographic Chemicals > Photographic Color Kits"),
4139
+ 'value' => 1376
4140
+ ),array(
4141
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Photographic Chemicals > Photographic Developer"),
4142
+ 'value' => 1377
4143
+ ),array(
4144
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Photographic Chemicals > Photographic Fixers"),
4145
+ 'value' => 1378
4146
+ ),array(
4147
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Photographic Chemicals > Photographic Toners"),
4148
+ 'value' => 1379
4149
+ ),array(
4150
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Photographic Chemicals > Stop Baths"),
4151
+ 'value' => 1380
4152
+ ),array(
4153
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Photographic Paper"),
4154
+ 'value' => 1381
4155
+ ),array(
4156
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Darkroom > Safelights"),
4157
+ 'value' => 1382
4158
+ ),array(
4159
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio"),
4160
+ 'value' => 1383
4161
+ ),array(
4162
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Backgrounds"),
4163
+ 'value' => 1384
4164
+ ),array(
4165
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Flash Diffusers"),
4166
+ 'value' => 1385
4167
+ ),array(
4168
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Flash Diffusers > Camera Flash Diffusers"),
4169
+ 'value' => 1386
4170
+ ),array(
4171
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Flash Reflectors"),
4172
+ 'value' => 1387
4173
+ ),array(
4174
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Light Controls"),
4175
+ 'value' => 1388
4176
+ ),array(
4177
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Light Meter Accessories"),
4178
+ 'value' => 1389
4179
+ ),array(
4180
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Light Meters"),
4181
+ 'value' => 1390
4182
+ ),array(
4183
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Lighting Filters & Gels"),
4184
+ 'value' => 1391
4185
+ ),array(
4186
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Softboxes"),
4187
+ 'value' => 1392
4188
+ ),array(
4189
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Studio Lights & Flashes"),
4190
+ 'value' => 1393
4191
+ ),array(
4192
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Lighting & Studio > Studio Mountings"),
4193
+ 'value' => 1394
4194
+ ),array(
4195
+ 'label' => Mage::helper('richsnippet')->__("Cameras & Optics > Photography > Photo Negative & Slide Storage"),
4196
+ 'value' => 1395
4197
+ ),array(
4198
+ 'label' => Mage::helper('richsnippet')->__("Electronics"),
4199
+ 'value' => 1396
4200
+ ),array(
4201
+ 'label' => Mage::helper('richsnippet')->__("Electronics > 3D Printers"),
4202
+ 'value' => 1397
4203
+ ),array(
4204
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Arcade Equipment"),
4205
+ 'value' => 1398
4206
+ ),array(
4207
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Arcade Equipment > Pinball Machine Accessories"),
4208
+ 'value' => 1399
4209
+ ),array(
4210
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Arcade Equipment > Pinball Machines"),
4211
+ 'value' => 1400
4212
+ ),array(
4213
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Arcade Equipment > Skee-Ball Machines"),
4214
+ 'value' => 1401
4215
+ ),array(
4216
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Arcade Equipment > Video Game Arcade Cabinet Accessories"),
4217
+ 'value' => 1402
4218
+ ),array(
4219
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Arcade Equipment > Video Game Arcade Cabinets"),
4220
+ 'value' => 1403
4221
+ ),array(
4222
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio"),
4223
+ 'value' => 1404
4224
+ ),array(
4225
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories"),
4226
+ 'value' => 1405
4227
+ ),array(
4228
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Headphone Accessories"),
4229
+ 'value' => 1406
4230
+ ),array(
4231
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Headphone Accessories > Headphone Cushions"),
4232
+ 'value' => 1407
4233
+ ),array(
4234
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Headphone Accessories > Headphone Ear Tips"),
4235
+ 'value' => 1408
4236
+ ),array(
4237
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Karaoke System Accessories"),
4238
+ 'value' => 1409
4239
+ ),array(
4240
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Karaoke System Accessories > Karaoke Chips"),
4241
+ 'value' => 1410
4242
+ ),array(
4243
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > MP3 Player Accessories"),
4244
+ 'value' => 1411
4245
+ ),array(
4246
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > MP3 Player Accessories > MP3 Player & Mobile Phone Accessory Sets"),
4247
+ 'value' => 1412
4248
+ ),array(
4249
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > MP3 Player Accessories > MP3 Player Cases"),
4250
+ 'value' => 1413
4251
+ ),array(
4252
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Microphone Accessories"),
4253
+ 'value' => 1414
4254
+ ),array(
4255
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Microphone Accessories > Microphone Stands"),
4256
+ 'value' => 1415
4257
+ ),array(
4258
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Microphone Accessories > Microphone Windscreens"),
4259
+ 'value' => 1416
4260
+ ),array(
4261
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Satellite Radio Accessories"),
4262
+ 'value' => 1417
4263
+ ),array(
4264
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Speaker Accessories"),
4265
+ 'value' => 1418
4266
+ ),array(
4267
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Grill Fabric"),
4268
+ 'value' => 1419
4269
+ ),array(
4270
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Stand Bags"),
4271
+ 'value' => 1420
4272
+ ),array(
4273
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Speaker Accessories > Speaker Stands"),
4274
+ 'value' => 1421
4275
+ ),array(
4276
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Turntable Accessories"),
4277
+ 'value' => 1422
4278
+ ),array(
4279
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Accessories > Turntable Accessories > Turntable Cartridges & Needles"),
4280
+ 'value' => 1423
4281
+ ),array(
4282
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components"),
4283
+ 'value' => 1424
4284
+ ),array(
4285
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio & Video Receivers"),
4286
+ 'value' => 1425
4287
+ ),array(
4288
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio Amplifiers"),
4289
+ 'value' => 1426
4290
+ ),array(
4291
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio Amplifiers > Headphone Amplifiers"),
4292
+ 'value' => 1427
4293
+ ),array(
4294
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio Amplifiers > Power Amplifiers"),
4295
+ 'value' => 1428
4296
+ ),array(
4297
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio Mixers"),
4298
+ 'value' => 1429
4299
+ ),array(
4300
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio Transmitters"),
4301
+ 'value' => 1430
4302
+ ),array(
4303
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio Transmitters > Bluetooth Transmitters"),
4304
+ 'value' => 1431
4305
+ ),array(
4306
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Audio Transmitters > FM Transmitters"),
4307
+ 'value' => 1432
4308
+ ),array(
4309
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Channel Strips"),
4310
+ 'value' => 1433
4311
+ ),array(
4312
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Direct Boxes"),
4313
+ 'value' => 1434
4314
+ ),array(
4315
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Headphones"),
4316
+ 'value' => 1435
4317
+ ),array(
4318
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Microphones"),
4319
+ 'value' => 1436
4320
+ ),array(
4321
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Microphones > Video Camera Microphones"),
4322
+ 'value' => 1437
4323
+ ),array(
4324
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors"),
4325
+ 'value' => 1438
4326
+ ),array(
4327
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors > Crossovers"),
4328
+ 'value' => 1439
4329
+ ),array(
4330
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors > Effects Processors"),
4331
+ 'value' => 1440
4332
+ ),array(
4333
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors > Equalizers"),
4334
+ 'value' => 1441
4335
+ ),array(
4336
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors > Microphone Preamps"),
4337
+ 'value' => 1442
4338
+ ),array(
4339
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors > Noise Gates & Compressors"),
4340
+ 'value' => 1443
4341
+ ),array(
4342
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors > Phono Preamps"),
4343
+ 'value' => 1444
4344
+ ),array(
4345
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Signal Processors > Public Address Management Systems"),
4346
+ 'value' => 1445
4347
+ ),array(
4348
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Speakers"),
4349
+ 'value' => 1446
4350
+ ),array(
4351
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Speakers > Computer Speakers"),
4352
+ 'value' => 1447
4353
+ ),array(
4354
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Speakers > Studio Monitors"),
4355
+ 'value' => 1448
4356
+ ),array(
4357
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Components > Speakers > Subwoofers"),
4358
+ 'value' => 1449
4359
+ ),array(
4360
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders"),
4361
+ 'value' => 1450
4362
+ ),array(
4363
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Boomboxes"),
4364
+ 'value' => 1451
4365
+ ),array(
4366
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > CD Players & Recorders"),
4367
+ 'value' => 1452
4368
+ ),array(
4369
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Cassette Players & Recorders"),
4370
+ 'value' => 1453
4371
+ ),array(
4372
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Home Theater Systems"),
4373
+ 'value' => 1454
4374
+ ),array(
4375
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Jukeboxes"),
4376
+ 'value' => 1455
4377
+ ),array(
4378
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Karaoke Systems"),
4379
+ 'value' => 1456
4380
+ ),array(
4381
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > MP3 Players"),
4382
+ 'value' => 1457
4383
+ ),array(
4384
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > MiniDisc Players & Recorders"),
4385
+ 'value' => 1458
4386
+ ),array(
4387
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Multitrack Recorders"),
4388
+ 'value' => 1459
4389
+ ),array(
4390
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Radios"),
4391
+ 'value' => 1460
4392
+ ),array(
4393
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Radios > Internet Radios"),
4394
+ 'value' => 1461
4395
+ ),array(
4396
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Radios > Satellite Radios"),
4397
+ 'value' => 1462
4398
+ ),array(
4399
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Stereo Systems"),
4400
+ 'value' => 1463
4401
+ ),array(
4402
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Turntables & Record Players"),
4403
+ 'value' => 1464
4404
+ ),array(
4405
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Turntables & Record Players > DJ Turntables"),
4406
+ 'value' => 1465
4407
+ ),array(
4408
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Audio Players & Recorders > Voice Recorders"),
4409
+ 'value' => 1466
4410
+ ),array(
4411
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > DJ & Specialty Audio"),
4412
+ 'value' => 1467
4413
+ ),array(
4414
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > DJ & Specialty Audio > DJ CD Players"),
4415
+ 'value' => 1468
4416
+ ),array(
4417
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > DJ & Specialty Audio > DJ Equipment Accessories"),
4418
+ 'value' => 1469
4419
+ ),array(
4420
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > DJ & Specialty Audio > DJ Systems"),
4421
+ 'value' => 1470
4422
+ ),array(
4423
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Public Address Systems"),
4424
+ 'value' => 1471
4425
+ ),array(
4426
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Stage Equipment"),
4427
+ 'value' => 1472
4428
+ ),array(
4429
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Audio > Stage Equipment > Wireless Transmitters"),
4430
+ 'value' => 1473
4431
+ ),array(
4432
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components"),
4433
+ 'value' => 1474
4434
+ ),array(
4435
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Circuit Decoders & Encoders"),
4436
+ 'value' => 1475
4437
+ ),array(
4438
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Circuit Prototyping"),
4439
+ 'value' => 1476
4440
+ ),array(
4441
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Circuit Prototyping > Breadboards"),
4442
+ 'value' => 1477
4443
+ ),array(
4444
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Electronic Filters"),
4445
+ 'value' => 1478
4446
+ ),array(
4447
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Optoelectronics"),
4448
+ 'value' => 1479
4449
+ ),array(
4450
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Optoelectronics > Laser Diodes"),
4451
+ 'value' => 1480
4452
+ ),array(
4453
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Passive Circuit Components"),
4454
+ 'value' => 1481
4455
+ ),array(
4456
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Passive Circuit Components > Capacitors"),
4457
+ 'value' => 1482
4458
+ ),array(
4459
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Passive Circuit Components > Electronic Oscillators"),
4460
+ 'value' => 1483
4461
+ ),array(
4462
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Passive Circuit Components > Inductors"),
4463
+ 'value' => 1484
4464
+ ),array(
4465
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Passive Circuit Components > Resistors"),
4466
+ 'value' => 1485
4467
+ ),array(
4468
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Passive Circuit Components > Resistors > Potentiometers"),
4469
+ 'value' => 1486
4470
+ ),array(
4471
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Printed Circuit Boards"),
4472
+ 'value' => 1487
4473
+ ),array(
4474
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Printed Circuit Boards > Development Boards"),
4475
+ 'value' => 1488
4476
+ ),array(
4477
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Semiconductors"),
4478
+ 'value' => 1489
4479
+ ),array(
4480
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Semiconductors > Diodes"),
4481
+ 'value' => 1490
4482
+ ),array(
4483
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Semiconductors > Integrated Circuits & Chips"),
4484
+ 'value' => 1491
4485
+ ),array(
4486
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Semiconductors > Integrated Circuits & Chips > Op Amps"),
4487
+ 'value' => 1492
4488
+ ),array(
4489
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Semiconductors > Integrated Circuits & Chips > Voltage Regulator ICs"),
4490
+ 'value' => 1493
4491
+ ),array(
4492
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Semiconductors > Microcontrollers"),
4493
+ 'value' => 1494
4494
+ ),array(
4495
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Circuit Components > Semiconductors > Transistors"),
4496
+ 'value' => 1495
4497
+ ),array(
4498
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications"),
4499
+ 'value' => 1496
4500
+ ),array(
4501
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Answering Machines"),
4502
+ 'value' => 1497
4503
+ ),array(
4504
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Answering Machines > On Hold Systems"),
4505
+ 'value' => 1498
4506
+ ),array(
4507
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Caller IDs"),
4508
+ 'value' => 1499
4509
+ ),array(
4510
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Communication Radio Accessories"),
4511
+ 'value' => 1500
4512
+ ),array(
4513
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Communication Radios"),
4514
+ 'value' => 1501
4515
+ ),array(
4516
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Communication Radios > CB Radios"),
4517
+ 'value' => 1502
4518
+ ),array(
4519
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Communication Radios > Radio Scanners"),
4520
+ 'value' => 1503
4521
+ ),array(
4522
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Communication Radios > Two-Way Radios"),
4523
+ 'value' => 1504
4524
+ ),array(
4525
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Headsets"),
4526
+ 'value' => 1505
4527
+ ),array(
4528
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Intercom Accessories"),
4529
+ 'value' => 1506
4530
+ ),array(
4531
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Intercoms"),
4532
+ 'value' => 1507
4533
+ ),array(
4534
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Pagers"),
4535
+ 'value' => 1508
4536
+ ),array(
4537
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony"),
4538
+ 'value' => 1509
4539
+ ),array(
4540
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Conference Phones"),
4541
+ 'value' => 1510
4542
+ ),array(
4543
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Corded Phones"),
4544
+ 'value' => 1511
4545
+ ),array(
4546
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Cordless Phones"),
4547
+ 'value' => 1512
4548
+ ),array(
4549
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phone Accessories"),
4550
+ 'value' => 1513
4551
+ ),array(
4552
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Cases"),
4553
+ 'value' => 1514
4554
+ ),array(
4555
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Charms & Straps"),
4556
+ 'value' => 1515
4557
+ ),array(
4558
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Replacement Parts"),
4559
+ 'value' => 1516
4560
+ ),array(
4561
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Replacement Parts > Mobile Phone Digitizers"),
4562
+ 'value' => 1517
4563
+ ),array(
4564
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone SIM Cards"),
4565
+ 'value' => 1518
4566
+ ),array(
4567
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phone Accessories > Mobile Phone Stands"),
4568
+ 'value' => 1519
4569
+ ),array(
4570
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phones"),
4571
+ 'value' => 1520
4572
+ ),array(
4573
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phones > Feature Phones"),
4574
+ 'value' => 1521
4575
+ ),array(
4576
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phones > Smartphones"),
4577
+ 'value' => 1522
4578
+ ),array(
4579
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Mobile Phones > Watch Phones"),
4580
+ 'value' => 1523
4581
+ ),array(
4582
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Satellite Phones"),
4583
+ 'value' => 1524
4584
+ ),array(
4585
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Telephone Accessories"),
4586
+ 'value' => 1525
4587
+ ),array(
4588
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Telephony > Telephone Accessories > Phone Cards"),
4589
+ 'value' => 1526
4590
+ ),array(
4591
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Communications > Video Conferencing"),
4592
+ 'value' => 1527
4593
+ ),array(
4594
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components"),
4595
+ 'value' => 1528
4596
+ ),array(
4597
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Accelerometers"),
4598
+ 'value' => 1529
4599
+ ),array(
4600
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Automation Control Components"),
4601
+ 'value' => 1530
4602
+ ),array(
4603
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Automation Control Components > Programmable Logic Controllers"),
4604
+ 'value' => 1531
4605
+ ),array(
4606
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Automation Control Components > Variable Frequency & Adjustable Speed Drives"),
4607
+ 'value' => 1532
4608
+ ),array(
4609
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Connectors"),
4610
+ 'value' => 1533
4611
+ ),array(
4612
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Connectors > Keystone Jacks"),
4613
+ 'value' => 1534
4614
+ ),array(
4615
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Connectors > RCA Jacks"),
4616
+ 'value' => 1535
4617
+ ),array(
4618
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Converters"),
4619
+ 'value' => 1536
4620
+ ),array(
4621
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Converters > Scan Converters"),
4622
+ 'value' => 1537
4623
+ ),array(
4624
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Modulators"),
4625
+ 'value' => 1538
4626
+ ),array(
4627
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Modulators > RF Modulators"),
4628
+ 'value' => 1539
4629
+ ),array(
4630
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Splitters"),
4631
+ 'value' => 1540
4632
+ ),array(
4633
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Splitters > RF Splitters"),
4634
+ 'value' => 1541
4635
+ ),array(
4636
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Splitters > UHF Splitters"),
4637
+ 'value' => 1542
4638
+ ),array(
4639
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Transformers"),
4640
+ 'value' => 1543
4641
+ ),array(
4642
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Components > Transformers > Baluns"),
4643
+ 'value' => 1544
4644
+ ),array(
4645
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers"),
4646
+ 'value' => 1545
4647
+ ),array(
4648
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Barebone Computers"),
4649
+ 'value' => 1546
4650
+ ),array(
4651
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories"),
4652
+ 'value' => 1547
4653
+ ),array(
4654
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Computer Risers & Stands"),
4655
+ 'value' => 1548
4656
+ ),array(
4657
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Handheld Device Accessories"),
4658
+ 'value' => 1549
4659
+ ),array(
4660
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Handheld Device Accessories > E-Book Reader Accessories"),
4661
+ 'value' => 1550
4662
+ ),array(
4663
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Handheld Device Accessories > E-Book Reader Accessories > E-Book Reader Cases"),
4664
+ 'value' => 1551
4665
+ ),array(
4666
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Handheld Device Accessories > PDA Accessories"),
4667
+ 'value' => 1552
4668
+ ),array(
4669
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Handheld Device Accessories > PDA Accessories > PDA Cases"),
4670
+ 'value' => 1553
4671
+ ),array(
4672
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Keyboard & Mouse Wrist Rests"),
4673
+ 'value' => 1554
4674
+ ),array(
4675
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Keyboard Trays & Platforms"),
4676
+ 'value' => 1555
4677
+ ),array(
4678
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Laptop Accessories"),
4679
+ 'value' => 1556
4680
+ ),array(
4681
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Laptop Accessories > Laptop Docking Stations"),
4682
+ 'value' => 1557
4683
+ ),array(
4684
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Mouse Pads"),
4685
+ 'value' => 1558
4686
+ ),array(
4687
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Stylus Pen Nibs & Refills"),
4688
+ 'value' => 1559
4689
+ ),array(
4690
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Stylus Pens"),
4691
+ 'value' => 1560
4692
+ ),array(
4693
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Tablet Computer Accessories"),
4694
+ 'value' => 1561
4695
+ ),array(
4696
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Tablet Computer Accessories > Tablet Computer Replacement Parts"),
4697
+ 'value' => 1562
4698
+ ),array(
4699
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Tablet Computer Accessories > Tablet Computer Replacement Parts > Tablet Computer Digitizers"),
4700
+ 'value' => 1563
4701
+ ),array(
4702
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Accessories > Tablet Computer Accessories > Tablet Computer Stands"),
4703
+ 'value' => 1564
4704
+ ),array(
4705
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components"),
4706
+ 'value' => 1565
4707
+ ),array(
4708
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Blade Server Enclosures"),
4709
+ 'value' => 1566
4710
+ ),array(
4711
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Computer Cases"),
4712
+ 'value' => 1567
4713
+ ),array(
4714
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Computer Power Supplies"),
4715
+ 'value' => 1568
4716
+ ),array(
4717
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Computer Processors"),
4718
+ 'value' => 1569
4719
+ ),array(
4720
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Computer Racks & Mounts"),
4721
+ 'value' => 1570
4722
+ ),array(
4723
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Computer Starter Kits"),
4724
+ 'value' => 1571
4725
+ ),array(
4726
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Computer System Cooling"),
4727
+ 'value' => 1572
4728
+ ),array(
4729
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters"),
4730
+ 'value' => 1573
4731
+ ),array(
4732
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters > Audio Cards & Adapters"),
4733
+ 'value' => 1574
4734
+ ),array(
4735
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters > FireWire Cards"),
4736
+ 'value' => 1575
4737
+ ),array(
4738
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters > Parallel Cards & Adapters"),
4739
+ 'value' => 1576
4740
+ ),array(
4741
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters > Serial Cards & Adapters"),
4742
+ 'value' => 1577
4743
+ ),array(
4744
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters > TV Tuner Cards & Adapters"),
4745
+ 'value' => 1578
4746
+ ),array(
4747
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters > USB Cards"),
4748
+ 'value' => 1579
4749
+ ),array(
4750
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > I/O Cards & Adapters > Video Cards & Adapters"),
4751
+ 'value' => 1580
4752
+ ),array(
4753
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Device Accessories"),
4754
+ 'value' => 1581
4755
+ ),array(
4756
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Device Accessories > Barcode Scanner Stands"),
4757
+ 'value' => 1582
4758
+ ),array(
4759
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Device Accessories > Game Controller Accessories"),
4760
+ 'value' => 1583
4761
+ ),array(
4762
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Device Accessories > Game Controller Accessories > Game Controller Thumbsticks & Buttons"),
4763
+ 'value' => 1584
4764
+ ),array(
4765
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Device Accessories > Graphics Tablet Accessories"),
4766
+ 'value' => 1585
4767
+ ),array(
4768
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices"),
4769
+ 'value' => 1586
4770
+ ),array(
4771
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Barcode Scanners"),
4772
+ 'value' => 1587
4773
+ ),array(
4774
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Computer Keyboards"),
4775
+ 'value' => 1588
4776
+ ),array(
4777
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Digital Note Taking Pens"),
4778
+ 'value' => 1589
4779
+ ),array(
4780
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Fingerprint Readers"),
4781
+ 'value' => 1590
4782
+ ),array(
4783
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Game Controllers"),
4784
+ 'value' => 1591
4785
+ ),array(
4786
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Graphics Tablets"),
4787
+ 'value' => 1592
4788
+ ),array(
4789
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > KVM Switches"),
4790
+ 'value' => 1593
4791
+ ),array(
4792
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Keyboard & Mouse Sets"),
4793
+ 'value' => 1594
4794
+ ),array(
4795
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Memory Card Readers"),
4796
+ 'value' => 1595
4797
+ ),array(
4798
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Mice & Trackballs"),
4799
+ 'value' => 1596
4800
+ ),array(
4801
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Numeric Keypads"),
4802
+ 'value' => 1597
4803
+ ),array(
4804
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Smart Card Readers"),
4805
+ 'value' => 1598
4806
+ ),array(
4807
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Input Devices > Touchpads"),
4808
+ 'value' => 1599
4809
+ ),array(
4810
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Laptop Parts"),
4811
+ 'value' => 1600
4812
+ ),array(
4813
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Laptop Parts > Laptop Hinges"),
4814
+ 'value' => 1601
4815
+ ),array(
4816
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Laptop Parts > Laptop Replacement Cables"),
4817
+ 'value' => 1602
4818
+ ),array(
4819
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Laptop Parts > Laptop Replacement Keyboards"),
4820
+ 'value' => 1603
4821
+ ),array(
4822
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Laptop Parts > Laptop Replacement Screens"),
4823
+ 'value' => 1604
4824
+ ),array(
4825
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Laptop Parts > Laptop Shells"),
4826
+ 'value' => 1605
4827
+ ),array(
4828
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Motherboards"),
4829
+ 'value' => 1606
4830
+ ),array(
4831
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Output Devices"),
4832
+ 'value' => 1607
4833
+ ),array(
4834
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices"),
4835
+ 'value' => 1608
4836
+ ),array(
4837
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Disk Arrays"),
4838
+ 'value' => 1609
4839
+ ),array(
4840
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Disk Duplicators"),
4841
+ 'value' => 1610
4842
+ ),array(
4843
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Disk Duplicators > CD/DVD Duplicators"),
4844
+ 'value' => 1611
4845
+ ),array(
4846
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Disk Duplicators > Hard Drive Duplicators"),
4847
+ 'value' => 1612
4848
+ ),array(
4849
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Disk Duplicators > USB Drive Duplicators"),
4850
+ 'value' => 1613
4851
+ ),array(
4852
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Floppy Drives"),
4853
+ 'value' => 1614
4854
+ ),array(
4855
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Hard Drives"),
4856
+ 'value' => 1615
4857
+ ),array(
4858
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Hard Drives > Solid State Drives"),
4859
+ 'value' => 1616
4860
+ ),array(
4861
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Hard Drives > XBox 360 Hard Drives"),
4862
+ 'value' => 1617
4863
+ ),array(
4864
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Network Storage Systems"),
4865
+ 'value' => 1618
4866
+ ),array(
4867
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Network Storage Systems > Network Storage Servers"),
4868
+ 'value' => 1619
4869
+ ),array(
4870
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Network Storage Systems > Storage Area Networks"),
4871
+ 'value' => 1620
4872
+ ),array(
4873
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Optical Drives"),
4874
+ 'value' => 1621
4875
+ ),array(
4876
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Optical Drives > CD Drives"),
4877
+ 'value' => 1622
4878
+ ),array(
4879
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Optical Drives > DVD Drives"),
4880
+ 'value' => 1623
4881
+ ),array(
4882
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Optical Drives > MO Drives"),
4883
+ 'value' => 1624
4884
+ ),array(
4885
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Storage Drive Accessories"),
4886
+ 'value' => 1625
4887
+ ),array(
4888
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Storage Drive Accessories > Hard Drive Caddies"),
4889
+ 'value' => 1626
4890
+ ),array(
4891
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Storage Drive Accessories > Hard Drive Carrying Cases"),
4892
+ 'value' => 1627
4893
+ ),array(
4894
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Storage Drive Accessories > Hard Drive Docks"),
4895
+ 'value' => 1628
4896
+ ),array(
4897
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Storage Drive Accessories > Hard Drive Enclosures"),
4898
+ 'value' => 1629
4899
+ ),array(
4900
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Storage Drive Accessories > Hard Drive Mounts"),
4901
+ 'value' => 1630
4902
+ ),array(
4903
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > Tape Drives"),
4904
+ 'value' => 1631
4905
+ ),array(
4906
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > Storage Devices > USB Flash Drives"),
4907
+ 'value' => 1632
4908
+ ),array(
4909
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Components > USB & FireWire Hubs"),
4910
+ 'value' => 1633
4911
+ ),array(
4912
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Computer Servers"),
4913
+ 'value' => 1634
4914
+ ),array(
4915
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Desktop Computers"),
4916
+ 'value' => 1635
4917
+ ),array(
4918
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Handheld Devices"),
4919
+ 'value' => 1636
4920
+ ),array(
4921
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Handheld Devices > Data Collection Terminals"),
4922
+ 'value' => 1637
4923
+ ),array(
4924
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Handheld Devices > E-Book Readers"),
4925
+ 'value' => 1638
4926
+ ),array(
4927
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Handheld Devices > PDAs"),
4928
+ 'value' => 1639
4929
+ ),array(
4930
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Interactive Kiosks"),
4931
+ 'value' => 1640
4932
+ ),array(
4933
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Laptops"),
4934
+ 'value' => 1641
4935
+ ),array(
4936
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Laptops > Netbooks"),
4937
+ 'value' => 1642
4938
+ ),array(
4939
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Computers > Tablet Computers"),
4940
+ 'value' => 1643
4941
+ ),array(
4942
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electrical Motors"),
4943
+ 'value' => 1644
4944
+ ),array(
4945
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories"),
4946
+ 'value' => 1645
4947
+ ),array(
4948
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Adapters"),
4949
+ 'value' => 1646
4950
+ ),array(
4951
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Adapters > Audio & Video Adapters"),
4952
+ 'value' => 1647
4953
+ ),array(
4954
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Adapters > Memory Adapters"),
4955
+ 'value' => 1648
4956
+ ),array(
4957
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Adapters > Storage Adapters"),
4958
+ 'value' => 1649
4959
+ ),array(
4960
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Adapters > USB Adapters"),
4961
+ 'value' => 1650
4962
+ ),array(
4963
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antenna Accessories"),
4964
+ 'value' => 1651
4965
+ ),array(
4966
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antenna Accessories > Antenna Mounts & Brackets"),
4967
+ 'value' => 1652
4968
+ ),array(
4969
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antenna Accessories > Antenna Rotators"),
4970
+ 'value' => 1653
4971
+ ),array(
4972
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antenna Accessories > Satellite LNBs"),
4973
+ 'value' => 1654
4974
+ ),array(
4975
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antennas"),
4976
+ 'value' => 1655
4977
+ ),array(
4978
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antennas > Communication Antennas"),
4979
+ 'value' => 1656
4980
+ ),array(
4981
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antennas > Radio Antennas"),
4982
+ 'value' => 1657
4983
+ ),array(
4984
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Antennas > TV Antennas"),
4985
+ 'value' => 1658
4986
+ ),array(
4987
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media"),
4988
+ 'value' => 1659
4989
+ ),array(
4990
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Blank Audio Tapes"),
4991
+ 'value' => 1660
4992
+ ),array(
4993
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Blank Audio Tapes > Micro Cassettes"),
4994
+ 'value' => 1661
4995
+ ),array(
4996
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Blank Blu-ray Discs"),
4997
+ 'value' => 1662
4998
+ ),array(
4999
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Blank CDs"),
5000
+ 'value' => 1663
5001
+ ),array(
5002
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Blank DVDs"),
5003
+ 'value' => 1664
5004
+ ),array(
5005
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Blank Video Tapes"),
5006
+ 'value' => 1665
5007
+ ),array(
5008
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Computer Disks"),
5009
+ 'value' => 1666
5010
+ ),array(
5011
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Computer Disks > Floppy Disks"),
5012
+ 'value' => 1667
5013
+ ),array(
5014
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > Computer Tapes"),
5015
+ 'value' => 1668
5016
+ ),array(
5017
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Blank Media > MiniDiscs"),
5018
+ 'value' => 1669
5019
+ ),array(
5020
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cable Management"),
5021
+ 'value' => 1670
5022
+ ),array(
5023
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cable Management > Cable Clips"),
5024
+ 'value' => 1671
5025
+ ),array(
5026
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cable Management > Cable Trays"),
5027
+ 'value' => 1672
5028
+ ),array(
5029
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cable Management > Patch Panels"),
5030
+ 'value' => 1673
5031
+ ),array(
5032
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cable Management > Wire & Cable Sleeves"),
5033
+ 'value' => 1674
5034
+ ),array(
5035
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cable Management > Wire & Cable Ties"),
5036
+ 'value' => 1675
5037
+ ),array(
5038
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables"),
5039
+ 'value' => 1676
5040
+ ),array(
5041
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Audio & Video Cables"),
5042
+ 'value' => 1677
5043
+ ),array(
5044
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Audio & Video Cables > DVI Cables"),
5045
+ 'value' => 1678
5046
+ ),array(
5047
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Audio & Video Cables > HDMI Cables"),
5048
+ 'value' => 1679
5049
+ ),array(
5050
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Audio & Video Cables > SCART Cables"),
5051
+ 'value' => 1680
5052
+ ),array(
5053
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Audio & Video Cables > Speaker Cables"),
5054
+ 'value' => 1681
5055
+ ),array(
5056
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Coaxial Cables"),
5057
+ 'value' => 1682
5058
+ ),array(
5059
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Data Transfer Cables"),
5060
+ 'value' => 1683
5061
+ ),array(
5062
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Data Transfer Cables > FireWire Cables"),
5063
+ 'value' => 1684
5064
+ ),array(
5065
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Data Transfer Cables > USB Cables"),
5066
+ 'value' => 1685
5067
+ ),array(
5068
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Data Transfer Cables > iOS Cables"),
5069
+ 'value' => 1686
5070
+ ),array(
5071
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > KVM Cables"),
5072
+ 'value' => 1687
5073
+ ),array(
5074
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Network Cables"),
5075
+ 'value' => 1688
5076
+ ),array(
5077
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Network Cables > Ethernet Cables"),
5078
+ 'value' => 1689
5079
+ ),array(
5080
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Network Cables > Serial Cables"),
5081
+ 'value' => 1690
5082
+ ),array(
5083
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Optical Cables"),
5084
+ 'value' => 1691
5085
+ ),array(
5086
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > RCA Cables"),
5087
+ 'value' => 1692
5088
+ ),array(
5089
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Storage Cables"),
5090
+ 'value' => 1693
5091
+ ),array(
5092
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Storage Cables > IDE Cables"),
5093
+ 'value' => 1694
5094
+ ),array(
5095
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Storage Cables > SAS Cables"),
5096
+ 'value' => 1695
5097
+ ),array(
5098
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Storage Cables > SATA Cables"),
5099
+ 'value' => 1696
5100
+ ),array(
5101
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Storage Cables > SCSI Cables"),
5102
+ 'value' => 1697
5103
+ ),array(
5104
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > System & Power Cables"),
5105
+ 'value' => 1698
5106
+ ),array(
5107
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Cables > Telephone Cables"),
5108
+ 'value' => 1699
5109
+ ),array(
5110
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Cleaners"),
5111
+ 'value' => 1700
5112
+ ),array(
5113
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Cleaners > Audio & Video Cleaners"),
5114
+ 'value' => 1701
5115
+ ),array(
5116
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Cleaners > Camera Cleaners"),
5117
+ 'value' => 1702
5118
+ ),array(
5119
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Cleaners > Screen Cleaners"),
5120
+ 'value' => 1703
5121
+ ),array(
5122
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields"),
5123
+ 'value' => 1704
5124
+ ),array(
5125
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals"),
5126
+ 'value' => 1705
5127
+ ),array(
5128
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals > Computer Keyboard Stickers"),
5129
+ 'value' => 1706
5130
+ ),array(
5131
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals > Game Console Stickers & Decals"),
5132
+ 'value' => 1707
5133
+ ),array(
5134
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals > Laptop Stickers & Decals"),
5135
+ 'value' => 1708
5136
+ ),array(
5137
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals > MP3 Player Stickers & Decals"),
5138
+ 'value' => 1709
5139
+ ),array(
5140
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals > Mobile Phone Stickers & Decals"),
5141
+ 'value' => 1710
5142
+ ),array(
5143
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Electronics Stickers & Decals > Tablet Computer Stickers & Decals"),
5144
+ 'value' => 1711
5145
+ ),array(
5146
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Keyboard Protectors"),
5147
+ 'value' => 1712
5148
+ ),array(
5149
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Privacy Filters"),
5150
+ 'value' => 1713
5151
+ ),array(
5152
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Electronics Films & Shields > Screen Protectors"),
5153
+ 'value' => 1714
5154
+ ),array(
5155
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory"),
5156
+ 'value' => 1715
5157
+ ),array(
5158
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory > Cache Memory"),
5159
+ 'value' => 1716
5160
+ ),array(
5161
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory > Flash Memory"),
5162
+ 'value' => 1717
5163
+ ),array(
5164
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory > Flash Memory > Flash Memory Cards"),
5165
+ 'value' => 1718
5166
+ ),array(
5167
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory > RAM"),
5168
+ 'value' => 1719
5169
+ ),array(
5170
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory > ROM"),
5171
+ 'value' => 1720
5172
+ ),array(
5173
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory > Video Memory"),
5174
+ 'value' => 1721
5175
+ ),array(
5176
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory Accessories"),
5177
+ 'value' => 1722
5178
+ ),array(
5179
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Memory Accessories > Memory Cases"),
5180
+ 'value' => 1723
5181
+ ),array(
5182
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power"),
5183
+ 'value' => 1724
5184
+ ),array(
5185
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries"),
5186
+ 'value' => 1725
5187
+ ),array(
5188
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > Camera Batteries"),
5189
+ 'value' => 1726
5190
+ ),array(
5191
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > Cordless Phone Batteries"),
5192
+ 'value' => 1727
5193
+ ),array(
5194
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > E-Book Reader Batteries"),
5195
+ 'value' => 1728
5196
+ ),array(
5197
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > General Purpose Batteries"),
5198
+ 'value' => 1729
5199
+ ),array(
5200
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > Laptop Batteries"),
5201
+ 'value' => 1730
5202
+ ),array(
5203
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > Mobile Phone Batteries"),
5204
+ 'value' => 1731
5205
+ ),array(
5206
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > PDA Batteries"),
5207
+ 'value' => 1732
5208
+ ),array(
5209
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > Tablet Computer Batteries"),
5210
+ 'value' => 1733
5211
+ ),array(
5212
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > UPS Batteries"),
5213
+ 'value' => 1734
5214
+ ),array(
5215
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Batteries > Video Camera Batteries"),
5216
+ 'value' => 1735
5217
+ ),array(
5218
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Battery Accessories"),
5219
+ 'value' => 1736
5220
+ ),array(
5221
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Battery Accessories > Camera Battery Chargers"),
5222
+ 'value' => 1737
5223
+ ),array(
5224
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Battery Accessories > General Purpose Battery Chargers"),
5225
+ 'value' => 1738
5226
+ ),array(
5227
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Chargers"),
5228
+ 'value' => 1739
5229
+ ),array(
5230
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Chargers > E-Book Reader Chargers"),
5231
+ 'value' => 1740
5232
+ ),array(
5233
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Chargers > MP3 Player Chargers"),
5234
+ 'value' => 1741
5235
+ ),array(
5236
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Chargers > Mobile Phone Chargers"),
5237
+ 'value' => 1742
5238
+ ),array(
5239
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Chargers > PDA Chargers"),
5240
+ 'value' => 1743
5241
+ ),array(
5242
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Chargers > Solar Chargers"),
5243
+ 'value' => 1744
5244
+ ),array(
5245
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Chargers > Tablet Computer Chargers"),
5246
+ 'value' => 1745
5247
+ ),array(
5248
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Fuel Cells"),
5249
+ 'value' => 1746
5250
+ ),array(
5251
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Adapter Accessories"),
5252
+ 'value' => 1747
5253
+ ),array(
5254
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Adapters"),
5255
+ 'value' => 1748
5256
+ ),array(
5257
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Adapters > Laptop Power Adapters"),
5258
+ 'value' => 1749
5259
+ ),array(
5260
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Adapters > Power Converters"),
5261
+ 'value' => 1750
5262
+ ),array(
5263
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Adapters > Power Inverters"),
5264
+ 'value' => 1751
5265
+ ),array(
5266
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Adapters > Travel Adapters"),
5267
+ 'value' => 1752
5268
+ ),array(
5269
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Conditioners"),
5270
+ 'value' => 1753
5271
+ ),array(
5272
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Control Units"),
5273
+ 'value' => 1754
5274
+ ),array(
5275
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Enclosures"),
5276
+ 'value' => 1755
5277
+ ),array(
5278
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Injectors & Splitters"),
5279
+ 'value' => 1756
5280
+ ),array(
5281
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Power Strips & Surge Suppressors"),
5282
+ 'value' => 1757
5283
+ ),array(
5284
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Surge Protection Devices"),
5285
+ 'value' => 1758
5286
+ ),array(
5287
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > UPS"),
5288
+ 'value' => 1759
5289
+ ),array(
5290
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > UPS Accessories"),
5291
+ 'value' => 1760
5292
+ ),array(
5293
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Power > Voltage Converters"),
5294
+ 'value' => 1761
5295
+ ),array(
5296
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Remote Controls"),
5297
+ 'value' => 1762
5298
+ ),array(
5299
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Electronics Accessories > Signal Boosters"),
5300
+ 'value' => 1763
5301
+ ),array(
5302
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS"),
5303
+ 'value' => 1764
5304
+ ),array(
5305
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS > Automotive GPS"),
5306
+ 'value' => 1765
5307
+ ),array(
5308
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS > Aviation GPS"),
5309
+ 'value' => 1766
5310
+ ),array(
5311
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS > Sport GPS"),
5312
+ 'value' => 1767
5313
+ ),array(
5314
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS Accessories"),
5315
+ 'value' => 1768
5316
+ ),array(
5317
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS Accessories > GPS Cases"),
5318
+ 'value' => 1769
5319
+ ),array(
5320
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS Accessories > GPS Mounts"),
5321
+ 'value' => 1770
5322
+ ),array(
5323
+ 'label' => Mage::helper('richsnippet')->__("Electronics > GPS Trackers"),
5324
+ 'value' => 1771
5325
+ ),array(
5326
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Marine Electronics"),
5327
+ 'value' => 1772
5328
+ ),array(
5329
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Marine Electronics > Fish Finders"),
5330
+ 'value' => 1773
5331
+ ),array(
5332
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Marine Electronics > Marine Chartplotters & GPS"),
5333
+ 'value' => 1774
5334
+ ),array(
5335
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Marine Electronics > Marine Radar"),
5336
+ 'value' => 1775
5337
+ ),array(
5338
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Marine Electronics > Marine Radios"),
5339
+ 'value' => 1776
5340
+ ),array(
5341
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking"),
5342
+ 'value' => 1777
5343
+ ),array(
5344
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Bridges & Routers"),
5345
+ 'value' => 1778
5346
+ ),array(
5347
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Bridges & Routers > Network Bridges"),
5348
+ 'value' => 1779
5349
+ ),array(
5350
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Bridges & Routers > Network Bridges > Wireless Bridges"),
5351
+ 'value' => 1780
5352
+ ),array(
5353
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Bridges & Routers > VoIP Gateways & Routers"),
5354
+ 'value' => 1781
5355
+ ),array(
5356
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Bridges & Routers > Wireless Access Points"),
5357
+ 'value' => 1782
5358
+ ),array(
5359
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Bridges & Routers > Wireless Routers"),
5360
+ 'value' => 1783
5361
+ ),array(
5362
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Concentrators & Multiplexers"),
5363
+ 'value' => 1784
5364
+ ),array(
5365
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Hubs & Switches"),
5366
+ 'value' => 1785
5367
+ ),array(
5368
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Modem Accessories"),
5369
+ 'value' => 1786
5370
+ ),array(
5371
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Modems"),
5372
+ 'value' => 1787
5373
+ ),array(
5374
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Network Cards & Adapters"),
5375
+ 'value' => 1788
5376
+ ),array(
5377
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Network Cards & Adapters > XBox 360 Network Cards"),
5378
+ 'value' => 1789
5379
+ ),array(
5380
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Network Security & Firewall Devices"),
5381
+ 'value' => 1790
5382
+ ),array(
5383
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Power Line Network Adapters"),
5384
+ 'value' => 1791
5385
+ ),array(
5386
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Print Servers"),
5387
+ 'value' => 1792
5388
+ ),array(
5389
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Networking > Repeaters & Transceivers"),
5390
+ 'value' => 1793
5391
+ ),array(
5392
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Plug & Play TV Games"),
5393
+ 'value' => 1794
5394
+ ),array(
5395
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax"),
5396
+ 'value' => 1795
5397
+ ),array(
5398
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Fax Machines"),
5399
+ 'value' => 1796
5400
+ ),array(
5401
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Printers & Copiers"),
5402
+ 'value' => 1797
5403
+ ),array(
5404
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Printers & Copiers > Copiers"),
5405
+ 'value' => 1798
5406
+ ),array(
5407
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Printers & Copiers > Printers"),
5408
+ 'value' => 1799
5409
+ ),array(
5410
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Printers & Copiers > Printers > Dot Matrix Printers"),
5411
+ 'value' => 1800
5412
+ ),array(
5413
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Printers & Copiers > Printers > Inkjet Printers"),
5414
+ 'value' => 1801
5415
+ ),array(
5416
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Printers & Copiers > Printers > Laser Printers"),
5417
+ 'value' => 1802
5418
+ ),array(
5419
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Printers & Copiers > Printers > Photo Printers"),
5420
+ 'value' => 1803
5421
+ ),array(
5422
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax > Scanners"),
5423
+ 'value' => 1804
5424
+ ),array(
5425
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories"),
5426
+ 'value' => 1805
5427
+ ),array(
5428
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Copier Accessories"),
5429
+ 'value' => 1806
5430
+ ),array(
5431
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories"),
5432
+ 'value' => 1807
5433
+ ),array(
5434
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables"),
5435
+ 'value' => 1808
5436
+ ),array(
5437
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables > Printer Filters"),
5438
+ 'value' => 1809
5439
+ ),array(
5440
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables > Printer Ribbons"),
5441
+ 'value' => 1810
5442
+ ),array(
5443
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables > Printheads"),
5444
+ 'value' => 1811
5445
+ ),array(
5446
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables > Toner & Inkjet Cartridge Refills"),
5447
+ 'value' => 1812
5448
+ ),array(
5449
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables > Toner & Inkjet Cartridges"),
5450
+ 'value' => 1813
5451
+ ),array(
5452
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables > Toner & Inkjet Cartridges > Oil Rollers"),
5453
+ 'value' => 1814
5454
+ ),array(
5455
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Consumables > Toner & Inkjet Cartridges > Printer Drum Kits"),
5456
+ 'value' => 1815
5457
+ ),array(
5458
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Duplexers"),
5459
+ 'value' => 1816
5460
+ ),array(
5461
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Maintenance Kits"),
5462
+ 'value' => 1817
5463
+ ),array(
5464
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Memory"),
5465
+ 'value' => 1818
5466
+ ),array(
5467
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Stands"),
5468
+ 'value' => 1819
5469
+ ),array(
5470
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Printer Accessories > Printer Trays"),
5471
+ 'value' => 1820
5472
+ ),array(
5473
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Print, Copy, Scan & Fax Accessories > Scanner Accessories"),
5474
+ 'value' => 1821
5475
+ ),array(
5476
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Toll Collection Devices"),
5477
+ 'value' => 1822
5478
+ ),array(
5479
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video"),
5480
+ 'value' => 1823
5481
+ ),array(
5482
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Computer Monitors"),
5483
+ 'value' => 1824
5484
+ ),array(
5485
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Projectors"),
5486
+ 'value' => 1825
5487
+ ),array(
5488
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Projectors > Multimedia Projectors"),
5489
+ 'value' => 1826
5490
+ ),array(
5491
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Projectors > Overhead Projectors"),
5492
+ 'value' => 1827
5493
+ ),array(
5494
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Projectors > Slide Projectors"),
5495
+ 'value' => 1828
5496
+ ),array(
5497
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Satellite & Cable TV"),
5498
+ 'value' => 1829
5499
+ ),array(
5500
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Satellite & Cable TV > Cable TV Receivers"),
5501
+ 'value' => 1830
5502
+ ),array(
5503
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Satellite & Cable TV > Satellite Receivers"),
5504
+ 'value' => 1831
5505
+ ),array(
5506
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Televisions"),
5507
+ 'value' => 1832
5508
+ ),array(
5509
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Televisions > CRT Televisions"),
5510
+ 'value' => 1833
5511
+ ),array(
5512
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Televisions > Flat Panel Televisions"),
5513
+ 'value' => 1834
5514
+ ),array(
5515
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Televisions > Portable Televisions"),
5516
+ 'value' => 1835
5517
+ ),array(
5518
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Televisions > Projection Televisions"),
5519
+ 'value' => 1836
5520
+ ),array(
5521
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories"),
5522
+ 'value' => 1837
5523
+ ),array(
5524
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > 3D Glasses"),
5525
+ 'value' => 1838
5526
+ ),array(
5527
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Computer Monitor Accessories"),
5528
+ 'value' => 1839
5529
+ ),array(
5530
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Computer Monitor Accessories > Color Calibrators"),
5531
+ 'value' => 1840
5532
+ ),array(
5533
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Projector Accessories"),
5534
+ 'value' => 1841
5535
+ ),array(
5536
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Projector Accessories > Projection & Tripod Skirts"),
5537
+ 'value' => 1842
5538
+ ),array(
5539
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Projector Accessories > Projection Screen Stands"),
5540
+ 'value' => 1843
5541
+ ),array(
5542
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Projector Accessories > Projection Screens"),
5543
+ 'value' => 1844
5544
+ ),array(
5545
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Projector Accessories > Projector Mounts"),
5546
+ 'value' => 1845
5547
+ ),array(
5548
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Projector Accessories > Projector Replacement Lamps"),
5549
+ 'value' => 1846
5550
+ ),array(
5551
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Rewinders"),
5552
+ 'value' => 1847
5553
+ ),array(
5554
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Television Accessories"),
5555
+ 'value' => 1848
5556
+ ),array(
5557
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Television Accessories > TV & Monitor Mounts"),
5558
+ 'value' => 1849
5559
+ ),array(
5560
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Television Accessories > TV Replacement Lamps"),
5561
+ 'value' => 1850
5562
+ ),array(
5563
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Accessories > Television Accessories > TV Scan Converters"),
5564
+ 'value' => 1851
5565
+ ),array(
5566
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Editing Hardware & Production Equipment"),
5567
+ 'value' => 1852
5568
+ ),array(
5569
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Multiplexers"),
5570
+ 'value' => 1853
5571
+ ),array(
5572
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders"),
5573
+ 'value' => 1854
5574
+ ),array(
5575
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders > DVD & Blu-ray Players"),
5576
+ 'value' => 1855
5577
+ ),array(
5578
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders > DVD Recorders"),
5579
+ 'value' => 1856
5580
+ ),array(
5581
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders > DVD Recorders > Blu-Ray Recorders"),
5582
+ 'value' => 1857
5583
+ ),array(
5584
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders > DVD Recorders > HD-DVD Recorders"),
5585
+ 'value' => 1858
5586
+ ),array(
5587
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders > Digital Video Recorders"),
5588
+ 'value' => 1859
5589
+ ),array(
5590
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders > Home Media Players"),
5591
+ 'value' => 1860
5592
+ ),array(
5593
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Players & Recorders > VCRs"),
5594
+ 'value' => 1861
5595
+ ),array(
5596
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Servers"),
5597
+ 'value' => 1862
5598
+ ),array(
5599
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Transmitters"),
5600
+ 'value' => 1863
5601
+ ),array(
5602
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video > Video Transmitters > Video Senders"),
5603
+ 'value' => 1864
5604
+ ),array(
5605
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories"),
5606
+ 'value' => 1865
5607
+ ),array(
5608
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories"),
5609
+ 'value' => 1866
5610
+ ),array(
5611
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > All PlayStation Accessories"),
5612
+ 'value' => 1867
5613
+ ),array(
5614
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > All PlayStation Accessories > PlayStation (original) Accessories"),
5615
+ 'value' => 1868
5616
+ ),array(
5617
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > All PlayStation Accessories > PlayStation 2 Accessories"),
5618
+ 'value' => 1869
5619
+ ),array(
5620
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > All PlayStation Accessories > PlayStation 3 Accessories"),
5621
+ 'value' => 1870
5622
+ ),array(
5623
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > All XBox Accessories"),
5624
+ 'value' => 1871
5625
+ ),array(
5626
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > All XBox Accessories > XBox (original) Accessories"),
5627
+ 'value' => 1872
5628
+ ),array(
5629
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > All XBox Accessories > XBox 360 Accessories"),
5630
+ 'value' => 1873
5631
+ ),array(
5632
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Dreamcast Accessories"),
5633
+ 'value' => 1874
5634
+ ),array(
5635
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > GameCube Accessories"),
5636
+ 'value' => 1875
5637
+ ),array(
5638
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Jaguar Accessories"),
5639
+ 'value' => 1876
5640
+ ),array(
5641
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Neo Geo Accessories"),
5642
+ 'value' => 1877
5643
+ ),array(
5644
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Nintendo 64 Accessories"),
5645
+ 'value' => 1878
5646
+ ),array(
5647
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Nintendo Entertainment System Accessories"),
5648
+ 'value' => 1879
5649
+ ),array(
5650
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Sega Genesis Accessories"),
5651
+ 'value' => 1880
5652
+ ),array(
5653
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Sega Master System Accessories"),
5654
+ 'value' => 1881
5655
+ ),array(
5656
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Super Nintendo Accessories"),
5657
+ 'value' => 1882
5658
+ ),array(
5659
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Turbografx 16 Accessories"),
5660
+ 'value' => 1883
5661
+ ),array(
5662
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Wii Accessories"),
5663
+ 'value' => 1884
5664
+ ),array(
5665
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Home Game Console Accessories > Wii U Accessories"),
5666
+ 'value' => 1885
5667
+ ),array(
5668
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories"),
5669
+ 'value' => 1886
5670
+ ),array(
5671
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > All Game Boy Accessories"),
5672
+ 'value' => 1887
5673
+ ),array(
5674
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > All Game Boy Accessories > Game Boy Accessories"),
5675
+ 'value' => 1888
5676
+ ),array(
5677
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > All Game Boy Accessories > Game Boy Advance Accessories"),
5678
+ 'value' => 1889
5679
+ ),array(
5680
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > Atari Lynx Accessories"),
5681
+ 'value' => 1890
5682
+ ),array(
5683
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > Game Gear Accessories"),
5684
+ 'value' => 1891
5685
+ ),array(
5686
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > N-Gage Accessories"),
5687
+ 'value' => 1892
5688
+ ),array(
5689
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > Neo Geo Pocket Accessories"),
5690
+ 'value' => 1893
5691
+ ),array(
5692
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > Nintendo 3DS Accessories"),
5693
+ 'value' => 1894
5694
+ ),array(
5695
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > Nintendo DS Accessories"),
5696
+ 'value' => 1895
5697
+ ),array(
5698
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > PlayStation Portable Accessories"),
5699
+ 'value' => 1896
5700
+ ),array(
5701
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > PlayStation Vita Accessories"),
5702
+ 'value' => 1897
5703
+ ),array(
5704
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Console Accessories > Portable Game Console Accessories > WonderSwan Accessories"),
5705
+ 'value' => 1898
5706
+ ),array(
5707
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles"),
5708
+ 'value' => 1899
5709
+ ),array(
5710
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles"),
5711
+ 'value' => 1900
5712
+ ),array(
5713
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Dreamcast Consoles"),
5714
+ 'value' => 1901
5715
+ ),array(
5716
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > GameCube Consoles"),
5717
+ 'value' => 1902
5718
+ ),array(
5719
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Jaguar Consoles"),
5720
+ 'value' => 1903
5721
+ ),array(
5722
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Neo Geo Consoles"),
5723
+ 'value' => 1904
5724
+ ),array(
5725
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Nintendo 64 Consoles"),
5726
+ 'value' => 1905
5727
+ ),array(
5728
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Nintendo Entertainment System Consoles"),
5729
+ 'value' => 1906
5730
+ ),array(
5731
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > PlayStation (original) Consoles"),
5732
+ 'value' => 1907
5733
+ ),array(
5734
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > PlayStation 2 Consoles"),
5735
+ 'value' => 1908
5736
+ ),array(
5737
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > PlayStation 3 Consoles"),
5738
+ 'value' => 1909
5739
+ ),array(
5740
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Sega Genesis Consoles"),
5741
+ 'value' => 1910
5742
+ ),array(
5743
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Sega Master System Consoles"),
5744
+ 'value' => 1911
5745
+ ),array(
5746
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Super Nintendo Consoles"),
5747
+ 'value' => 1912
5748
+ ),array(
5749
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Turbografx 16 Consoles"),
5750
+ 'value' => 1913
5751
+ ),array(
5752
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Wii Consoles"),
5753
+ 'value' => 1914
5754
+ ),array(
5755
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > Wii U Consoles"),
5756
+ 'value' => 1915
5757
+ ),array(
5758
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > XBox (original) Consoles"),
5759
+ 'value' => 1916
5760
+ ),array(
5761
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Home Game Consoles > XBox 360 Consoles"),
5762
+ 'value' => 1917
5763
+ ),array(
5764
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles"),
5765
+ 'value' => 1918
5766
+ ),array(
5767
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > All Game Boy Consoles"),
5768
+ 'value' => 1919
5769
+ ),array(
5770
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > All Game Boy Consoles > Game Boy Advance Consoles"),
5771
+ 'value' => 1920
5772
+ ),array(
5773
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > All Game Boy Consoles > Game Boy Consoles"),
5774
+ 'value' => 1921
5775
+ ),array(
5776
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > Atari Lynx Consoles"),
5777
+ 'value' => 1922
5778
+ ),array(
5779
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > Game Gear Consoles"),
5780
+ 'value' => 1923
5781
+ ),array(
5782
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > LeapFrog Consoles"),
5783
+ 'value' => 1924
5784
+ ),array(
5785
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > N-Gage Consoles"),
5786
+ 'value' => 1925
5787
+ ),array(
5788
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > Neo Geo Pocket Consoles"),
5789
+ 'value' => 1926
5790
+ ),array(
5791
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > Nintendo 3DS"),
5792
+ 'value' => 1927
5793
+ ),array(
5794
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > Nintendo DS Consoles"),
5795
+ 'value' => 1928
5796
+ ),array(
5797
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > PlayStation Portable Consoles"),
5798
+ 'value' => 1929
5799
+ ),array(
5800
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > PlayStation Vita"),
5801
+ 'value' => 1930
5802
+ ),array(
5803
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > Retrogen"),
5804
+ 'value' => 1931
5805
+ ),array(
5806
+ 'label' => Mage::helper('richsnippet')->__("Electronics > Video Game Consoles > Portable Game Consoles > WonderSwan"),
5807
+ 'value' => 1932
5808
+ ),array(
5809
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco"),
5810
+ 'value' => 1933
5811
+ ),array(
5812
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages"),
5813
+ 'value' => 1934
5814
+ ),array(
5815
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Beer"),
5816
+ 'value' => 1935
5817
+ ),array(
5818
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Beer > Non-Alcoholic Beer"),
5819
+ 'value' => 1936
5820
+ ),array(
5821
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Bitters"),
5822
+ 'value' => 1937
5823
+ ),array(
5824
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Buttermilk"),
5825
+ 'value' => 1938
5826
+ ),array(
5827
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Cocktail Mixes"),
5828
+ 'value' => 1939
5829
+ ),array(
5830
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Coffee"),
5831
+ 'value' => 1940
5832
+ ),array(
5833
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Coffee > Bottled Coffee Drinks"),
5834
+ 'value' => 1941
5835
+ ),array(
5836
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Coffee > Coffee Pods"),
5837
+ 'value' => 1942
5838
+ ),array(
5839
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Coffee > Ground & Whole Bean Coffee"),
5840
+ 'value' => 1943
5841
+ ),array(
5842
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Coffee > Instant Coffee"),
5843
+ 'value' => 1944
5844
+ ),array(
5845
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Eggnog"),
5846
+ 'value' => 1945
5847
+ ),array(
5848
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Flavored Malt Beverages"),
5849
+ 'value' => 1946
5850
+ ),array(
5851
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Fruit Flavored Drinks"),
5852
+ 'value' => 1947
5853
+ ),array(
5854
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Hard Cider"),
5855
+ 'value' => 1948
5856
+ ),array(
5857
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Hot Chocolate"),
5858
+ 'value' => 1949
5859
+ ),array(
5860
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Juice"),
5861
+ 'value' => 1950
5862
+ ),array(
5863
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits"),
5864
+ 'value' => 1951
5865
+ ),array(
5866
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Brandy"),
5867
+ 'value' => 1952
5868
+ ),array(
5869
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Brandy > Cognac"),
5870
+ 'value' => 1953
5871
+ ),array(
5872
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Gin"),
5873
+ 'value' => 1954
5874
+ ),array(
5875
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Liqueurs"),
5876
+ 'value' => 1955
5877
+ ),array(
5878
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Rum"),
5879
+ 'value' => 1956
5880
+ ),array(
5881
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Schnapps"),
5882
+ 'value' => 1957
5883
+ ),array(
5884
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Tequila"),
5885
+ 'value' => 1958
5886
+ ),array(
5887
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Vodka"),
5888
+ 'value' => 1959
5889
+ ),array(
5890
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Whiskey"),
5891
+ 'value' => 1960
5892
+ ),array(
5893
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Whiskey > American Whiskey"),
5894
+ 'value' => 1961
5895
+ ),array(
5896
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Whiskey > Irish Whiskey"),
5897
+ 'value' => 1962
5898
+ ),array(
5899
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Liquor & Spirits > Whiskey > Scotch Whiskey"),
5900
+ 'value' => 1963
5901
+ ),array(
5902
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Milk"),
5903
+ 'value' => 1964
5904
+ ),array(
5905
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Milk > Powdered Milk"),
5906
+ 'value' => 1965
5907
+ ),array(
5908
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Non-Dairy Milk"),
5909
+ 'value' => 1966
5910
+ ),array(
5911
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Non-Dairy Milk > Almond Milk"),
5912
+ 'value' => 1967
5913
+ ),array(
5914
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Non-Dairy Milk > Coconut Milk"),
5915
+ 'value' => 1968
5916
+ ),array(
5917
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Non-Dairy Milk > Hemp Milk"),
5918
+ 'value' => 1969
5919
+ ),array(
5920
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Non-Dairy Milk > Oat Milk"),
5921
+ 'value' => 1970
5922
+ ),array(
5923
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Non-Dairy Milk > Rice Milk"),
5924
+ 'value' => 1971
5925
+ ),array(
5926
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Non-Dairy Milk > Soy Milk"),
5927
+ 'value' => 1972
5928
+ ),array(
5929
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Powdered Beverage Mixes"),
5930
+ 'value' => 1973
5931
+ ),array(
5932
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Soda"),
5933
+ 'value' => 1974
5934
+ ),array(
5935
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Sports & Energy Drinks"),
5936
+ 'value' => 1975
5937
+ ),array(
5938
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Tea & Infusions"),
5939
+ 'value' => 1976
5940
+ ),array(
5941
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Tea & Infusions > Bottled Tea Drinks"),
5942
+ 'value' => 1977
5943
+ ),array(
5944
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Tea & Infusions > Powdered Tea"),
5945
+ 'value' => 1978
5946
+ ),array(
5947
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Tea & Infusions > Tea Bags & Loose Tea Leaves"),
5948
+ 'value' => 1979
5949
+ ),array(
5950
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Vinegar Drinks"),
5951
+ 'value' => 1980
5952
+ ),array(
5953
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Water"),
5954
+ 'value' => 1981
5955
+ ),array(
5956
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Water > Bottled Water"),
5957
+ 'value' => 1982
5958
+ ),array(
5959
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Water > Carbonated Water"),
5960
+ 'value' => 1983
5961
+ ),array(
5962
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Water > Flavored Water"),
5963
+ 'value' => 1984
5964
+ ),array(
5965
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Water > Tonic Water"),
5966
+ 'value' => 1985
5967
+ ),array(
5968
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine"),
5969
+ 'value' => 1986
5970
+ ),array(
5971
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Blush Wine"),
5972
+ 'value' => 1987
5973
+ ),array(
5974
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Dessert Wine"),
5975
+ 'value' => 1988
5976
+ ),array(
5977
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Dessert Wine > Port"),
5978
+ 'value' => 1989
5979
+ ),array(
5980
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Dessert Wine > Sherry"),
5981
+ 'value' => 1990
5982
+ ),array(
5983
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Dessert Wine > Vermouth"),
5984
+ 'value' => 1991
5985
+ ),array(
5986
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Mead"),
5987
+ 'value' => 1992
5988
+ ),array(
5989
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Non-Alcoholic Wine"),
5990
+ 'value' => 1993
5991
+ ),array(
5992
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Red Wine"),
5993
+ 'value' => 1994
5994
+ ),array(
5995
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Rice Wine"),
5996
+ 'value' => 1995
5997
+ ),array(
5998
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Rosé Wine"),
5999
+ 'value' => 1996
6000
+ ),array(
6001
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Sangria"),
6002
+ 'value' => 1997
6003
+ ),array(
6004
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > Sparkling Wine"),
6005
+ 'value' => 1998
6006
+ ),array(
6007
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Beverages > Wine > White Wine"),
6008
+ 'value' => 1999
6009
+ ),array(
6010
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items"),
6011
+ 'value' => 2000
6012
+ ),array(
6013
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery"),
6014
+ 'value' => 2001
6015
+ ),array(
6016
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Bagels"),
6017
+ 'value' => 2002
6018
+ ),array(
6019
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Bakery Assortments"),
6020
+ 'value' => 2003
6021
+ ),array(
6022
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Breads & Buns"),
6023
+ 'value' => 2004
6024
+ ),array(
6025
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Cakes & Dessert Bars"),
6026
+ 'value' => 2005
6027
+ ),array(
6028
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Coffee Cakes"),
6029
+ 'value' => 2006
6030
+ ),array(
6031
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Cookies"),
6032
+ 'value' => 2007
6033
+ ),array(
6034
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Cupcakes"),
6035
+ 'value' => 2008
6036
+ ),array(
6037
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Donuts"),
6038
+ 'value' => 2009
6039
+ ),array(
6040
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Fudge"),
6041
+ 'value' => 2010
6042
+ ),array(
6043
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Ice Cream Cones"),
6044
+ 'value' => 2011
6045
+ ),array(
6046
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Muffins"),
6047
+ 'value' => 2012
6048
+ ),array(
6049
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Pastries & Scones"),
6050
+ 'value' => 2013
6051
+ ),array(
6052
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Pies & Tarts"),
6053
+ 'value' => 2014
6054
+ ),array(
6055
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Taco Shells & Tostadas"),
6056
+ 'value' => 2015
6057
+ ),array(
6058
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Bakery > Tortillas & Wraps"),
6059
+ 'value' => 2016
6060
+ ),array(
6061
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum"),
6062
+ 'value' => 2017
6063
+ ),array(
6064
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate"),
6065
+ 'value' => 2018
6066
+ ),array(
6067
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Candy Bars & Pieces"),
6068
+ 'value' => 2019
6069
+ ),array(
6070
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Candy Brittle"),
6071
+ 'value' => 2020
6072
+ ),array(
6073
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Candy Canes"),
6074
+ 'value' => 2021
6075
+ ),array(
6076
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Candy Corn"),
6077
+ 'value' => 2022
6078
+ ),array(
6079
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Caramels"),
6080
+ 'value' => 2023
6081
+ ),array(
6082
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Chocolate Assortments"),
6083
+ 'value' => 2024
6084
+ ),array(
6085
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Chocolate Bars"),
6086
+ 'value' => 2025
6087
+ ),array(
6088
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Chocolate Covered Fruit"),
6089
+ 'value' => 2026
6090
+ ),array(
6091
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Chocolate Truffles"),
6092
+ 'value' => 2027
6093
+ ),array(
6094
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Fruit Chews"),
6095
+ 'value' => 2028
6096
+ ),array(
6097
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Gumdrops"),
6098
+ 'value' => 2029
6099
+ ),array(
6100
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Gummy Candies"),
6101
+ 'value' => 2030
6102
+ ),array(
6103
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Hard Candies"),
6104
+ 'value' => 2031
6105
+ ),array(
6106
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Jelly Beans"),
6107
+ 'value' => 2032
6108
+ ),array(
6109
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Licorice"),
6110
+ 'value' => 2033
6111
+ ),array(
6112
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Lollipops & Suckers"),
6113
+ 'value' => 2034
6114
+ ),array(
6115
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Marshmallow Candies"),
6116
+ 'value' => 2035
6117
+ ),array(
6118
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Mints"),
6119
+ 'value' => 2036
6120
+ ),array(
6121
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Nougat"),
6122
+ 'value' => 2037
6123
+ ),array(
6124
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Peanut Butter Cups"),
6125
+ 'value' => 2038
6126
+ ),array(
6127
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Peppermint Patties"),
6128
+ 'value' => 2039
6129
+ ),array(
6130
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Taffy"),
6131
+ 'value' => 2040
6132
+ ),array(
6133
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Candy & Chocolate > Toffee"),
6134
+ 'value' => 2041
6135
+ ),array(
6136
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Candy & Gum > Chewing Gum"),
6137
+ 'value' => 2042
6138
+ ),array(
6139
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces"),
6140
+ 'value' => 2043
6141
+ ),array(
6142
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Barbecue Sauce"),
6143
+ 'value' => 2044
6144
+ ),array(
6145
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Chutney"),
6146
+ 'value' => 2045
6147
+ ),array(
6148
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Cocktail Sauce"),
6149
+ 'value' => 2046
6150
+ ),array(
6151
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Coffee Creamer"),
6152
+ 'value' => 2047
6153
+ ),array(
6154
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Curry Sauce"),
6155
+ 'value' => 2048
6156
+ ),array(
6157
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings"),
6158
+ 'value' => 2049
6159
+ ),array(
6160
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings > Fruit Toppings"),
6161
+ 'value' => 2050
6162
+ ),array(
6163
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings > Ice Cream Syrup"),
6164
+ 'value' => 2051
6165
+ ),array(
6166
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Dessert Toppings > Whipped Topping"),
6167
+ 'value' => 2052
6168
+ ),array(
6169
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Fish Sauce"),
6170
+ 'value' => 2053
6171
+ ),array(
6172
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Gravy"),
6173
+ 'value' => 2054
6174
+ ),array(
6175
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Honey"),
6176
+ 'value' => 2055
6177
+ ),array(
6178
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Horseradish Sauce"),
6179
+ 'value' => 2056
6180
+ ),array(
6181
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Hot Sauce"),
6182
+ 'value' => 2057
6183
+ ),array(
6184
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Ketchup"),
6185
+ 'value' => 2058
6186
+ ),array(
6187
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Marinade"),
6188
+ 'value' => 2059
6189
+ ),array(
6190
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Mayonnaise"),
6191
+ 'value' => 2060
6192
+ ),array(
6193
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Mustard"),
6194
+ 'value' => 2061
6195
+ ),array(
6196
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Olives & Capers"),
6197
+ 'value' => 2062
6198
+ ),array(
6199
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pasta Sauce"),
6200
+ 'value' => 2063
6201
+ ),array(
6202
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pickles & Relishes"),
6203
+ 'value' => 2064
6204
+ ),array(
6205
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Pizza Sauce"),
6206
+ 'value' => 2065
6207
+ ),array(
6208
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Salad Dressing"),
6209
+ 'value' => 2066
6210
+ ),array(
6211
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Satay Sauce"),
6212
+ 'value' => 2067
6213
+ ),array(
6214
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Soy Sauce"),
6215
+ 'value' => 2068
6216
+ ),array(
6217
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Steak Sauce"),
6218
+ 'value' => 2069
6219
+ ),array(
6220
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Syrup"),
6221
+ 'value' => 2070
6222
+ ),array(
6223
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Syrup > Agave Syrup"),
6224
+ 'value' => 2071
6225
+ ),array(
6226
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Syrup > Flavored Syrup"),
6227
+ 'value' => 2072
6228
+ ),array(
6229
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Syrup > Pancake & Maple Syrup"),
6230
+ 'value' => 2073
6231
+ ),array(
6232
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Syrup > Snow Cone Syrup"),
6233
+ 'value' => 2074
6234
+ ),array(
6235
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Tahini"),
6236
+ 'value' => 2075
6237
+ ),array(
6238
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Tartar Sauce"),
6239
+ 'value' => 2076
6240
+ ),array(
6241
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Vinegar"),
6242
+ 'value' => 2077
6243
+ ),array(
6244
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Condiments & Sauces > Worcestershire Sauce"),
6245
+ 'value' => 2078
6246
+ ),array(
6247
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients"),
6248
+ 'value' => 2079
6249
+ ),array(
6250
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Artificial Sweeteners"),
6251
+ 'value' => 2080
6252
+ ),array(
6253
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Chips"),
6254
+ 'value' => 2081
6255
+ ),array(
6256
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Chocolate"),
6257
+ 'value' => 2082
6258
+ ),array(
6259
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Extracts"),
6260
+ 'value' => 2083
6261
+ ),array(
6262
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Extracts > Almond Extract"),
6263
+ 'value' => 2084
6264
+ ),array(
6265
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Extracts > Vanilla Extract"),
6266
+ 'value' => 2085
6267
+ ),array(
6268
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Kits"),
6269
+ 'value' => 2086
6270
+ ),array(
6271
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes"),
6272
+ 'value' => 2087
6273
+ ),array(
6274
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Bread & Muffin Mixes"),
6275
+ 'value' => 2088
6276
+ ),array(
6277
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Bread & Muffin Mixes > Bread Mixes"),
6278
+ 'value' => 2089
6279
+ ),array(
6280
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Bread & Muffin Mixes > Muffin Mixes"),
6281
+ 'value' => 2090
6282
+ ),array(
6283
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Bread Pudding Mixes"),
6284
+ 'value' => 2091
6285
+ ),array(
6286
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Cake & Brownie Mixes"),
6287
+ 'value' => 2092
6288
+ ),array(
6289
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Cookie Mixes"),
6290
+ 'value' => 2093
6291
+ ),array(
6292
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Pretzel Mixes"),
6293
+ 'value' => 2094
6294
+ ),array(
6295
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Mixes > Waffle & Pancake Mixes"),
6296
+ 'value' => 2095
6297
+ ),array(
6298
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Powder"),
6299
+ 'value' => 2096
6300
+ ),array(
6301
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Baking Soda"),
6302
+ 'value' => 2097
6303
+ ),array(
6304
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Batter & Coating Mixes"),
6305
+ 'value' => 2098
6306
+ ),array(
6307
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Bean Paste"),
6308
+ 'value' => 2099
6309
+ ),array(
6310
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Bread Crumbs"),
6311
+ 'value' => 2100
6312
+ ),array(
6313
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Condensed Milk"),
6314
+ 'value' => 2101
6315
+ ),array(
6316
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil"),
6317
+ 'value' => 2102
6318
+ ),array(
6319
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Canola Oil"),
6320
+ 'value' => 2103
6321
+ ),array(
6322
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Chili Oil"),
6323
+ 'value' => 2104
6324
+ ),array(
6325
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Coconut Oil"),
6326
+ 'value' => 2105
6327
+ ),array(
6328
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Cooking Spray"),
6329
+ 'value' => 2106
6330
+ ),array(
6331
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Corn Oil"),
6332
+ 'value' => 2107
6333
+ ),array(
6334
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Hemp Oil"),
6335
+ 'value' => 2108
6336
+ ),array(
6337
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Olive Oil"),
6338
+ 'value' => 2109
6339
+ ),array(
6340
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Peanut Oil"),
6341
+ 'value' => 2110
6342
+ ),array(
6343
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Rice Oil"),
6344
+ 'value' => 2111
6345
+ ),array(
6346
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Sesame Oil"),
6347
+ 'value' => 2112
6348
+ ),array(
6349
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Soybean Oil"),
6350
+ 'value' => 2113
6351
+ ),array(
6352
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Vegetable Oil"),
6353
+ 'value' => 2114
6354
+ ),array(
6355
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Oil > Walnut Oil"),
6356
+ 'value' => 2115
6357
+ ),array(
6358
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Starch"),
6359
+ 'value' => 2116
6360
+ ),array(
6361
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Cooking Wine"),
6362
+ 'value' => 2117
6363
+ ),array(
6364
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Corn Syrup"),
6365
+ 'value' => 2118
6366
+ ),array(
6367
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough"),
6368
+ 'value' => 2119
6369
+ ),array(
6370
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Bread & Pastry Dough"),
6371
+ 'value' => 2120
6372
+ ),array(
6373
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Bread & Pastry Dough > Pizza Dough"),
6374
+ 'value' => 2121
6375
+ ),array(
6376
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Cookie & Brownie Dough"),
6377
+ 'value' => 2122
6378
+ ),array(
6379
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Dough > Pie Crusts"),
6380
+ 'value' => 2123
6381
+ ),array(
6382
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Edible Baking Decorations"),
6383
+ 'value' => 2124
6384
+ ),array(
6385
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Edible Baking Decorations > Colored Sugar"),
6386
+ 'value' => 2125
6387
+ ),array(
6388
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Edible Baking Decorations > Edible Baking Decoration Kits"),
6389
+ 'value' => 2126
6390
+ ),array(
6391
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Edible Baking Decorations > Sprinkles"),
6392
+ 'value' => 2127
6393
+ ),array(
6394
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Edible Baking Decorations > Sugar Pearls"),
6395
+ 'value' => 2128
6396
+ ),array(
6397
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Evaporated Milk"),
6398
+ 'value' => 2129
6399
+ ),array(
6400
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Floss Sugar"),
6401
+ 'value' => 2130
6402
+ ),array(
6403
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Flour"),
6404
+ 'value' => 2131
6405
+ ),array(
6406
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Food Coloring"),
6407
+ 'value' => 2132
6408
+ ),array(
6409
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Frosting & Icing"),
6410
+ 'value' => 2133
6411
+ ),array(
6412
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Marshmallows"),
6413
+ 'value' => 2134
6414
+ ),array(
6415
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Molasses"),
6416
+ 'value' => 2135
6417
+ ),array(
6418
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Pie Fillings"),
6419
+ 'value' => 2136
6420
+ ),array(
6421
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Shortening & Lard"),
6422
+ 'value' => 2137
6423
+ ),array(
6424
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Shredded Coconut"),
6425
+ 'value' => 2138
6426
+ ),array(
6427
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Starter Cultures"),
6428
+ 'value' => 2139
6429
+ ),array(
6430
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Sugar"),
6431
+ 'value' => 2140
6432
+ ),array(
6433
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Tomato Paste"),
6434
+ 'value' => 2141
6435
+ ),array(
6436
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Unflavored Gelatin"),
6437
+ 'value' => 2142
6438
+ ),array(
6439
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Cooking & Baking Ingredients > Yeast"),
6440
+ 'value' => 2143
6441
+ ),array(
6442
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products"),
6443
+ 'value' => 2144
6444
+ ),array(
6445
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products > Butter & Margarine"),
6446
+ 'value' => 2145
6447
+ ),array(
6448
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products > Cheese"),
6449
+ 'value' => 2146
6450
+ ),array(
6451
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products > Cottage Cheese"),
6452
+ 'value' => 2147
6453
+ ),array(
6454
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products > Cream"),
6455
+ 'value' => 2148
6456
+ ),array(
6457
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products > Sour Cream"),
6458
+ 'value' => 2149
6459
+ ),array(
6460
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products > Whipped Cream"),
6461
+ 'value' => 2150
6462
+ ),array(
6463
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dairy Products > Yogurt"),
6464
+ 'value' => 2151
6465
+ ),array(
6466
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads"),
6467
+ 'value' => 2152
6468
+ ),array(
6469
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Apple Butter"),
6470
+ 'value' => 2153
6471
+ ),array(
6472
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Cheese Spread"),
6473
+ 'value' => 2154
6474
+ ),array(
6475
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Cream Cheese"),
6476
+ 'value' => 2155
6477
+ ),array(
6478
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Guacamole"),
6479
+ 'value' => 2156
6480
+ ),array(
6481
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Hummus"),
6482
+ 'value' => 2157
6483
+ ),array(
6484
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Jams & Jellies"),
6485
+ 'value' => 2158
6486
+ ),array(
6487
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Nut Butters"),
6488
+ 'value' => 2159
6489
+ ),array(
6490
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Nut Butters > Almond Butter"),
6491
+ 'value' => 2160
6492
+ ),array(
6493
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Nut Butters > Hazelnut Butter"),
6494
+ 'value' => 2161
6495
+ ),array(
6496
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Nut Butters > Peanut Butter"),
6497
+ 'value' => 2162
6498
+ ),array(
6499
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Salsa"),
6500
+ 'value' => 2163
6501
+ ),array(
6502
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Tapenade"),
6503
+ 'value' => 2164
6504
+ ),array(
6505
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Dips & Spreads > Vegetable Dip"),
6506
+ 'value' => 2165
6507
+ ),array(
6508
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Food Gift Baskets"),
6509
+ 'value' => 2166
6510
+ ),array(
6511
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties"),
6512
+ 'value' => 2167
6513
+ ),array(
6514
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Frozen Yogurt"),
6515
+ 'value' => 2168
6516
+ ),array(
6517
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Ice Cream"),
6518
+ 'value' => 2169
6519
+ ),array(
6520
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Nondairy Frozen Desserts"),
6521
+ 'value' => 2170
6522
+ ),array(
6523
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Popsicles"),
6524
+ 'value' => 2171
6525
+ ),array(
6526
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Sherbet"),
6527
+ 'value' => 2172
6528
+ ),array(
6529
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Sorbet"),
6530
+ 'value' => 2173
6531
+ ),array(
6532
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Frozen Desserts & Novelties > Sundae Cones"),
6533
+ 'value' => 2174
6534
+ ),array(
6535
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables"),
6536
+ 'value' => 2175
6537
+ ),array(
6538
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Jarred Vegetables"),
6539
+ 'value' => 2176
6540
+ ),array(
6541
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned & Prepared Beans"),
6542
+ 'value' => 2177
6543
+ ),array(
6544
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Canned Fruits"),
6545
+ 'value' => 2178
6546
+ ),array(
6547
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dried Fruits"),
6548
+ 'value' => 2179
6549
+ ),array(
6550
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dried Vegetables"),
6551
+ 'value' => 2180
6552
+ ),array(
6553
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Dry Beans"),
6554
+ 'value' => 2181
6555
+ ),array(
6556
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits"),
6557
+ 'value' => 2182
6558
+ ),array(
6559
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Apples"),
6560
+ 'value' => 2183
6561
+ ),array(
6562
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Apricots"),
6563
+ 'value' => 2184
6564
+ ),array(
6565
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Atemoyas"),
6566
+ 'value' => 2185
6567
+ ),array(
6568
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Avocados"),
6569
+ 'value' => 2186
6570
+ ),array(
6571
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Babacos"),
6572
+ 'value' => 2187
6573
+ ),array(
6574
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Bananas"),
6575
+ 'value' => 2188
6576
+ ),array(
6577
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Berries"),
6578
+ 'value' => 2189
6579
+ ),array(
6580
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Breadfruit"),
6581
+ 'value' => 2190
6582
+ ),array(
6583
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Cactus Pears"),
6584
+ 'value' => 2191
6585
+ ),array(
6586
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Cherimoyas"),
6587
+ 'value' => 2192
6588
+ ),array(
6589
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Cherries"),
6590
+ 'value' => 2193
6591
+ ),array(
6592
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Coconuts"),
6593
+ 'value' => 2194
6594
+ ),array(
6595
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Currants"),
6596
+ 'value' => 2195
6597
+ ),array(
6598
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Dates"),
6599
+ 'value' => 2196
6600
+ ),array(
6601
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Feijoas"),
6602
+ 'value' => 2197
6603
+ ),array(
6604
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Figs"),
6605
+ 'value' => 2198
6606
+ ),array(
6607
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Grapefruits"),
6608
+ 'value' => 2199
6609
+ ),array(
6610
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Grapes"),
6611
+ 'value' => 2200
6612
+ ),array(
6613
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Guavas"),
6614
+ 'value' => 2201
6615
+ ),array(
6616
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Homli Fruits"),
6617
+ 'value' => 2202
6618
+ ),array(
6619
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Kiwifruit"),
6620
+ 'value' => 2203
6621
+ ),array(
6622
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Kumquats"),
6623
+ 'value' => 2204
6624
+ ),array(
6625
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Lemons"),
6626
+ 'value' => 2205
6627
+ ),array(
6628
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Limequats"),
6629
+ 'value' => 2206
6630
+ ),array(
6631
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Limes"),
6632
+ 'value' => 2207
6633
+ ),array(
6634
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Longan"),
6635
+ 'value' => 2208
6636
+ ),array(
6637
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Loquats"),
6638
+ 'value' => 2209
6639
+ ),array(
6640
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Lychees"),
6641
+ 'value' => 2210
6642
+ ),array(
6643
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Madroño"),
6644
+ 'value' => 2211
6645
+ ),array(
6646
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Mamey"),
6647
+ 'value' => 2212
6648
+ ),array(
6649
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Mangoes"),
6650
+ 'value' => 2213
6651
+ ),array(
6652
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Mangosteens"),
6653
+ 'value' => 2214
6654
+ ),array(
6655
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Melons"),
6656
+ 'value' => 2215
6657
+ ),array(
6658
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Melons > Bitter Melons"),
6659
+ 'value' => 2216
6660
+ ),array(
6661
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Melons > Kiwanos"),
6662
+ 'value' => 2217
6663
+ ),array(
6664
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Nectarines"),
6665
+ 'value' => 2218
6666
+ ),array(
6667
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Oranges"),
6668
+ 'value' => 2219
6669
+ ),array(
6670
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Papayas"),
6671
+ 'value' => 2220
6672
+ ),array(
6673
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Passion Fruit"),
6674
+ 'value' => 2221
6675
+ ),array(
6676
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Peaches"),
6677
+ 'value' => 2222
6678
+ ),array(
6679
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pears"),
6680
+ 'value' => 2223
6681
+ ),array(
6682
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Persimmons"),
6683
+ 'value' => 2224
6684
+ ),array(
6685
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Physalis"),
6686
+ 'value' => 2225
6687
+ ),array(
6688
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pineapples"),
6689
+ 'value' => 2226
6690
+ ),array(
6691
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pitahayas"),
6692
+ 'value' => 2227
6693
+ ),array(
6694
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Plumcots"),
6695
+ 'value' => 2228
6696
+ ),array(
6697
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Plums"),
6698
+ 'value' => 2229
6699
+ ),array(
6700
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Pomegranates"),
6701
+ 'value' => 2230
6702
+ ),array(
6703
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Quince"),
6704
+ 'value' => 2231
6705
+ ),array(
6706
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Rambutans"),
6707
+ 'value' => 2232
6708
+ ),array(
6709
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sapodillo"),
6710
+ 'value' => 2233
6711
+ ),array(
6712
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sapote"),
6713
+ 'value' => 2234
6714
+ ),array(
6715
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Soursops"),
6716
+ 'value' => 2235
6717
+ ),array(
6718
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Starfruits"),
6719
+ 'value' => 2236
6720
+ ),array(
6721
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Sugar Apples"),
6722
+ 'value' => 2237
6723
+ ),array(
6724
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Tamarindo"),
6725
+ 'value' => 2238
6726
+ ),array(
6727
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Tangelos"),
6728
+ 'value' => 2239
6729
+ ),array(
6730
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Fruits > Tangerines"),
6731
+ 'value' => 2240
6732
+ ),array(
6733
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables"),
6734
+ 'value' => 2241
6735
+ ),array(
6736
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Alfafa Sprouts"),
6737
+ 'value' => 2242
6738
+ ),array(
6739
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Arracachas"),
6740
+ 'value' => 2243
6741
+ ),array(
6742
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Artichokes"),
6743
+ 'value' => 2244
6744
+ ),array(
6745
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Arugula"),
6746
+ 'value' => 2245
6747
+ ),array(
6748
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Asparagus"),
6749
+ 'value' => 2246
6750
+ ),array(
6751
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Bean Sprouts"),
6752
+ 'value' => 2247
6753
+ ),array(
6754
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Beans"),
6755
+ 'value' => 2248
6756
+ ),array(
6757
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Beet Greens"),
6758
+ 'value' => 2249
6759
+ ),array(
6760
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Beets"),
6761
+ 'value' => 2250
6762
+ ),array(
6763
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Bok Choy"),
6764
+ 'value' => 2251
6765
+ ),array(
6766
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Borage"),
6767
+ 'value' => 2252
6768
+ ),array(
6769
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Broccoli"),
6770
+ 'value' => 2253
6771
+ ),array(
6772
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Brussel Sprouts"),
6773
+ 'value' => 2254
6774
+ ),array(
6775
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cabbage"),
6776
+ 'value' => 2255
6777
+ ),array(
6778
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cactus Leaves"),
6779
+ 'value' => 2256
6780
+ ),array(
6781
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cardoon"),
6782
+ 'value' => 2257
6783
+ ),array(
6784
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Carrots"),
6785
+ 'value' => 2258
6786
+ ),array(
6787
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cauliflower"),
6788
+ 'value' => 2259
6789
+ ),array(
6790
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Celery"),
6791
+ 'value' => 2260
6792
+ ),array(
6793
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Celery Roots"),
6794
+ 'value' => 2261
6795
+ ),array(
6796
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Chard"),
6797
+ 'value' => 2262
6798
+ ),array(
6799
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Chick Peas"),
6800
+ 'value' => 2263
6801
+ ),array(
6802
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Chicory"),
6803
+ 'value' => 2264
6804
+ ),array(
6805
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Chicory > Belgian Endives"),
6806
+ 'value' => 2265
6807
+ ),array(
6808
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Chicory > Endives"),
6809
+ 'value' => 2266
6810
+ ),array(
6811
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Chicory > Escarole"),
6812
+ 'value' => 2267
6813
+ ),array(
6814
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Chicory > Radicchio"),
6815
+ 'value' => 2268
6816
+ ),array(
6817
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Choy Sum"),
6818
+ 'value' => 2269
6819
+ ),array(
6820
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Corn"),
6821
+ 'value' => 2270
6822
+ ),array(
6823
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Cucumbers"),
6824
+ 'value' => 2271
6825
+ ),array(
6826
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Eggplants"),
6827
+ 'value' => 2272
6828
+ ),array(
6829
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Fennel Bulbs"),
6830
+ 'value' => 2273
6831
+ ),array(
6832
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Fiddlehead Ferns"),
6833
+ 'value' => 2274
6834
+ ),array(
6835
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gai Choy"),
6836
+ 'value' => 2275
6837
+ ),array(
6838
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gai Lan"),
6839
+ 'value' => 2276
6840
+ ),array(
6841
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Garlic"),
6842
+ 'value' => 2277
6843
+ ),array(
6844
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Ginger Root"),
6845
+ 'value' => 2278
6846
+ ),array(
6847
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gobo Root"),
6848
+ 'value' => 2279
6849
+ ),array(
6850
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Gourds"),
6851
+ 'value' => 2280
6852
+ ),array(
6853
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Greens"),
6854
+ 'value' => 2281
6855
+ ),array(
6856
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Horseradish Root"),
6857
+ 'value' => 2282
6858
+
6859
+ ),array(
6860
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Jicama"),
6861
+ 'value' => 2283
6862
+ ),array(
6863
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Kale"),
6864
+ 'value' => 2284
6865
+ ),array(
6866
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Kohlrabi"),
6867
+ 'value' => 2285
6868
+ ),array(
6869
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Leeks"),
6870
+ 'value' => 2286
6871
+ ),array(
6872
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Lettuce"),
6873
+ 'value' => 2287
6874
+ ),array(
6875
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Lotus Roots"),
6876
+ 'value' => 2288
6877
+ ),array(
6878
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Malangas"),
6879
+ 'value' => 2289
6880
+ ),array(
6881
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Mushrooms"),
6882
+ 'value' => 2290
6883
+ ),array(
6884
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Okra"),
6885
+ 'value' => 2291
6886
+ ),array(
6887
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > On Choy"),
6888
+ 'value' => 2292
6889
+ ),array(
6890
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Onions"),
6891
+ 'value' => 2293
6892
+ ),array(
6893
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Parsley Roots"),
6894
+ 'value' => 2294
6895
+ ),array(
6896
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Parsnips"),
6897
+ 'value' => 2295
6898
+ ),array(
6899
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Peas"),
6900
+ 'value' => 2296
6901
+ ),array(
6902
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Peppers"),
6903
+ 'value' => 2297
6904
+ ),array(
6905
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Potatoes"),
6906
+ 'value' => 2298
6907
+ ),array(
6908
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Pumpkins"),
6909
+ 'value' => 2299
6910
+ ),array(
6911
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Radishes"),
6912
+ 'value' => 2300
6913
+ ),array(
6914
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Rhubarb"),
6915
+ 'value' => 2301
6916
+ ),array(
6917
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Rutabagas"),
6918
+ 'value' => 2302
6919
+ ),array(
6920
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Salad Mixes"),
6921
+ 'value' => 2303
6922
+ ),array(
6923
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Shallots"),
6924
+ 'value' => 2304
6925
+ ),array(
6926
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Spinach"),
6927
+ 'value' => 2305
6928
+ ),array(
6929
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Squashes"),
6930
+ 'value' => 2306
6931
+ ),array(
6932
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sugar Cane"),
6933
+ 'value' => 2307
6934
+ ),array(
6935
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sunchokes"),
6936
+ 'value' => 2308
6937
+ ),array(
6938
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Sweet Potatoes"),
6939
+ 'value' => 2309
6940
+ ),array(
6941
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Tamarillos"),
6942
+ 'value' => 2310
6943
+ ),array(
6944
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Taro Root"),
6945
+ 'value' => 2311
6946
+ ),array(
6947
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Tomatoes"),
6948
+ 'value' => 2312
6949
+ ),array(
6950
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Turnips"),
6951
+ 'value' => 2313
6952
+ ),array(
6953
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Tuscan Cabbage"),
6954
+ 'value' => 2314
6955
+ ),array(
6956
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Water Chestnuts"),
6957
+ 'value' => 2315
6958
+ ),array(
6959
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Watercress"),
6960
+ 'value' => 2316
6961
+ ),array(
6962
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Wheatgrass"),
6963
+ 'value' => 2317
6964
+ ),array(
6965
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Yu Choy"),
6966
+ 'value' => 2318
6967
+ ),array(
6968
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Yuca Root"),
6969
+ 'value' => 2319
6970
+ ),array(
6971
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fresh & Frozen Vegetables > Ñame"),
6972
+ 'value' => 2320
6973
+ ),array(
6974
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fruit Sauce"),
6975
+ 'value' => 2321
6976
+ ),array(
6977
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fruit Sauce > Apple Sauce"),
6978
+ 'value' => 2322
6979
+ ),array(
6980
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Fruits & Vegetables > Fruit Sauce > Cranberry Sauce"),
6981
+ 'value' => 2323
6982
+ ),array(
6983
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal"),
6984
+ 'value' => 2324
6985
+ ),array(
6986
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Amaranth"),
6987
+ 'value' => 2325
6988
+ ),array(
6989
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Barley"),
6990
+ 'value' => 2326
6991
+ ),array(
6992
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Buckwheat"),
6993
+ 'value' => 2327
6994
+ ),array(
6995
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Cereal & Granola"),
6996
+ 'value' => 2328
6997
+ ),array(
6998
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Cornmeal"),
6999
+ 'value' => 2329
7000
+ ),array(
7001
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Couscous"),
7002
+ 'value' => 2330
7003
+ ),array(
7004
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Millet"),
7005
+ 'value' => 2331
7006
+ ),array(
7007
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Oats, Grits & Hot Cereal"),
7008
+ 'value' => 2332
7009
+ ),array(
7010
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Quinoa"),
7011
+ 'value' => 2333
7012
+ ),array(
7013
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Rice"),
7014
+ 'value' => 2334
7015
+ ),array(
7016
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Rye"),
7017
+ 'value' => 2335
7018
+ ),array(
7019
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Grains, Rice & Cereal > Wheat"),
7020
+ 'value' => 2336
7021
+ ),array(
7022
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs"),
7023
+ 'value' => 2337
7024
+ ),array(
7025
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Eggs"),
7026
+ 'value' => 2338
7027
+ ),array(
7028
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat"),
7029
+ 'value' => 2339
7030
+ ),array(
7031
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Canned Meats"),
7032
+ 'value' => 2340
7033
+ ),array(
7034
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Fresh & Frozen Meats"),
7035
+ 'value' => 2341
7036
+ ),array(
7037
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Lunch & Deli Meats"),
7038
+ 'value' => 2342
7039
+ ),array(
7040
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Meat Patties"),
7041
+ 'value' => 2343
7042
+ ),array(
7043
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Meat > Sausages & Hot Dogs"),
7044
+ 'value' => 2344
7045
+ ),array(
7046
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood"),
7047
+ 'value' => 2345
7048
+ ),array(
7049
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood > Canned Seafood"),
7050
+ 'value' => 2346
7051
+ ),array(
7052
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Meat, Seafood & Eggs > Seafood > Fresh & Frozen Seafood"),
7053
+ 'value' => 2347
7054
+ ),array(
7055
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds"),
7056
+ 'value' => 2348
7057
+ ),array(
7058
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Almonds"),
7059
+ 'value' => 2349
7060
+ ),array(
7061
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Brazil Nuts"),
7062
+ 'value' => 2350
7063
+ ),array(
7064
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Cashews"),
7065
+ 'value' => 2351
7066
+ ),array(
7067
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Chestnuts"),
7068
+ 'value' => 2352
7069
+ ),array(
7070
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Chocolate Covered Nuts"),
7071
+ 'value' => 2353
7072
+ ),array(
7073
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Hazelnuts"),
7074
+ 'value' => 2354
7075
+ ),array(
7076
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Kola Nuts"),
7077
+ 'value' => 2355
7078
+ ),array(
7079
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Macadamia Nuts"),
7080
+ 'value' => 2356
7081
+ ),array(
7082
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Mamoncillo Nuts"),
7083
+ 'value' => 2357
7084
+ ),array(
7085
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Maya Nuts"),
7086
+ 'value' => 2358
7087
+ ),array(
7088
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Mixed Nuts"),
7089
+ 'value' => 2359
7090
+ ),array(
7091
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Ogbono Nuts"),
7092
+ 'value' => 2360
7093
+ ),array(
7094
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Paradise Nuts"),
7095
+ 'value' => 2361
7096
+ ),array(
7097
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Peanuts"),
7098
+ 'value' => 2362
7099
+ ),array(
7100
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Pecans"),
7101
+ 'value' => 2363
7102
+ ),array(
7103
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Pine Nuts"),
7104
+ 'value' => 2364
7105
+ ),array(
7106
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Pistachios"),
7107
+ 'value' => 2365
7108
+ ),array(
7109
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Pumpkin Seeds"),
7110
+ 'value' => 2366
7111
+ ),array(
7112
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Sesame Seeds"),
7113
+ 'value' => 2367
7114
+ ),array(
7115
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Soy Nuts"),
7116
+ 'value' => 2368
7117
+ ),array(
7118
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Sunflower Seeds"),
7119
+ 'value' => 2369
7120
+ ),array(
7121
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Nuts & Seeds > Walnuts"),
7122
+ 'value' => 2370
7123
+ ),array(
7124
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Pasta & Noodles"),
7125
+ 'value' => 2371
7126
+ ),array(
7127
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods"),
7128
+ 'value' => 2372
7129
+ ),array(
7130
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Appetizers & Hors d'Oeuvres"),
7131
+ 'value' => 2373
7132
+ ),array(
7133
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Frozen Dinners"),
7134
+ 'value' => 2374
7135
+ ),array(
7136
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Entrées & Sides"),
7137
+ 'value' => 2375
7138
+ ),array(
7139
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Entrées & Sides > Breakfast Sandwiches"),
7140
+ 'value' => 2376
7141
+ ),array(
7142
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Entrées & Sides > Pizza"),
7143
+ 'value' => 2377
7144
+ ),array(
7145
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Entrées & Sides > Prepared Entrées"),
7146
+ 'value' => 2378
7147
+ ),array(
7148
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Entrées & Sides > Prepared Sandwiches"),
7149
+ 'value' => 2379
7150
+ ),array(
7151
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Entrées & Sides > Prepared Side Dishes"),
7152
+ 'value' => 2380
7153
+ ),array(
7154
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Prepared Entrées & Sides > Waffles, Pancakes & French Toast"),
7155
+ 'value' => 2381
7156
+ ),array(
7157
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Skillet Dinners"),
7158
+ 'value' => 2382
7159
+ ),array(
7160
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Prepared Foods > Sushi"),
7161
+ 'value' => 2383
7162
+ ),array(
7163
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices"),
7164
+ 'value' => 2384
7165
+ ),array(
7166
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices"),
7167
+ 'value' => 2385
7168
+ ),array(
7169
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Anise"),
7170
+ 'value' => 2386
7171
+ ),array(
7172
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Basil"),
7173
+ 'value' => 2387
7174
+ ),array(
7175
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Bay Leaves"),
7176
+ 'value' => 2388
7177
+ ),array(
7178
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Chili Powder"),
7179
+ 'value' => 2389
7180
+ ),array(
7181
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Chives"),
7182
+ 'value' => 2390
7183
+ ),array(
7184
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Cilantro"),
7185
+ 'value' => 2391
7186
+ ),array(
7187
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Cinnamon"),
7188
+ 'value' => 2392
7189
+ ),array(
7190
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Cumin"),
7191
+ 'value' => 2393
7192
+ ),array(
7193
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Dill"),
7194
+ 'value' => 2394
7195
+ ),array(
7196
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Fennel Seeds"),
7197
+ 'value' => 2395
7198
+ ),array(
7199
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Garlic Powder"),
7200
+ 'value' => 2396
7201
+ ),array(
7202
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Lemon Grass"),
7203
+ 'value' => 2397
7204
+ ),array(
7205
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Marjoram"),
7206
+ 'value' => 2398
7207
+ ),array(
7208
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Mint"),
7209
+ 'value' => 2399
7210
+ ),array(
7211
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Onion Powder"),
7212
+ 'value' => 2400
7213
+ ),array(
7214
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Oregano"),
7215
+ 'value' => 2401
7216
+ ),array(
7217
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Paprika"),
7218
+ 'value' => 2402
7219
+ ),array(
7220
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Parsley"),
7221
+ 'value' => 2403
7222
+ ),array(
7223
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Rosemary"),
7224
+ 'value' => 2404
7225
+ ),array(
7226
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Sage"),
7227
+ 'value' => 2405
7228
+ ),array(
7229
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Salsify"),
7230
+ 'value' => 2406
7231
+ ),array(
7232
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Savory"),
7233
+ 'value' => 2407
7234
+ ),array(
7235
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Sorrel"),
7236
+ 'value' => 2408
7237
+ ),array(
7238
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Tarragon"),
7239
+ 'value' => 2409
7240
+ ),array(
7241
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Thyme"),
7242
+ 'value' => 2410
7243
+ ),array(
7244
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Herbs & Spices > Vanilla Beans"),
7245
+ 'value' => 2411
7246
+ ),array(
7247
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > MSG"),
7248
+ 'value' => 2412
7249
+ ),array(
7250
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Pepper"),
7251
+ 'value' => 2413
7252
+ ),array(
7253
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Salt"),
7254
+ 'value' => 2414
7255
+ ),array(
7256
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Seasonings & Spices > Seasoning & Spice Blends"),
7257
+ 'value' => 2415
7258
+ ),array(
7259
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods"),
7260
+ 'value' => 2416
7261
+ ),array(
7262
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Breadsticks"),
7263
+ 'value' => 2417
7264
+ ),array(
7265
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Cereal & Granola Bars"),
7266
+ 'value' => 2418
7267
+ ),array(
7268
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Cheese Puffs"),
7269
+ 'value' => 2419
7270
+ ),array(
7271
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Chips"),
7272
+ 'value' => 2420
7273
+ ),array(
7274
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Chips > Bagel Chips"),
7275
+ 'value' => 2421
7276
+ ),array(
7277
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Chips > Corn & Tortilla Chips"),
7278
+ 'value' => 2422
7279
+ ),array(
7280
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Chips > Pita Chips"),
7281
+ 'value' => 2423
7282
+ ),array(
7283
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Chips > Potato Chips"),
7284
+ 'value' => 2424
7285
+ ),array(
7286
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers"),
7287
+ 'value' => 2425
7288
+ ),array(
7289
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Cheese Crackers"),
7290
+ 'value' => 2426
7291
+ ),array(
7292
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Cracker Assortments"),
7293
+ 'value' => 2427
7294
+ ),array(
7295
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Flatbread Crackers"),
7296
+ 'value' => 2428
7297
+ ),array(
7298
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Graham Crackers"),
7299
+ 'value' => 2429
7300
+ ),array(
7301
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Matzo Crackers"),
7302
+ 'value' => 2430
7303
+ ),array(
7304
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Oyster Crackers"),
7305
+ 'value' => 2431
7306
+ ),array(
7307
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Saltine Crackers"),
7308
+ 'value' => 2432
7309
+ ),array(
7310
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Sandwich Crackers"),
7311
+ 'value' => 2433
7312
+ ),array(
7313
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Crackers > Water Crackers"),
7314
+ 'value' => 2434
7315
+ ),array(
7316
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Croutons"),
7317
+ 'value' => 2435
7318
+ ),array(
7319
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Fruit Snacks"),
7320
+ 'value' => 2436
7321
+ ),array(
7322
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Jerky"),
7323
+ 'value' => 2437
7324
+ ),array(
7325
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Jerky > Beef Jerky"),
7326
+ 'value' => 2438
7327
+ ),array(
7328
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Jerky > Pork Jerky"),
7329
+ 'value' => 2439
7330
+ ),array(
7331
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Jerky > Turkey Jerky"),
7332
+ 'value' => 2440
7333
+ ),array(
7334
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Popcorn"),
7335
+ 'value' => 2441
7336
+ ),array(
7337
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Pork Rinds"),
7338
+ 'value' => 2442
7339
+ ),array(
7340
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Pretzels"),
7341
+ 'value' => 2443
7342
+ ),array(
7343
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Pudding & Gelatin Snacks"),
7344
+ 'value' => 2444
7345
+ ),array(
7346
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Puffed Rice Cakes"),
7347
+ 'value' => 2445
7348
+ ),array(
7349
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Salad Toppings"),
7350
+ 'value' => 2446
7351
+ ),array(
7352
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Sesame Sticks"),
7353
+ 'value' => 2447
7354
+ ),array(
7355
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Snack Cakes"),
7356
+ 'value' => 2448
7357
+ ),array(
7358
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Sticky Rice Cakes"),
7359
+ 'value' => 2449
7360
+ ),array(
7361
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Snack Foods > Trail & Snack Mixes"),
7362
+ 'value' => 2450
7363
+ ),array(
7364
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Soups & Broths"),
7365
+ 'value' => 2451
7366
+ ),array(
7367
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Soups & Broths > Bouillon Cubes"),
7368
+ 'value' => 2452
7369
+ ),array(
7370
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Soups & Broths > Canned Soups & Broths"),
7371
+ 'value' => 2453
7372
+ ),array(
7373
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Soups & Broths > Dried Soups"),
7374
+ 'value' => 2454
7375
+ ),array(
7376
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products"),
7377
+ 'value' => 2455
7378
+ ),array(
7379
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Cheese Alternatives"),
7380
+ 'value' => 2456
7381
+ ),array(
7382
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Meat Alternatives"),
7383
+ 'value' => 2457
7384
+ ),array(
7385
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Seitan"),
7386
+ 'value' => 2458
7387
+ ),array(
7388
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Tempeh"),
7389
+ 'value' => 2459
7390
+ ),array(
7391
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Food Items > Tofu, Soy & Vegetarian Products > Tofu"),
7392
+ 'value' => 2460
7393
+ ),array(
7394
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Tobacco Products"),
7395
+
7396
+ 'value' => 2461
7397
+ ),array(
7398
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Tobacco Products > Chewing Tobacco"),
7399
+ 'value' => 2462
7400
+ ),array(
7401
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Tobacco Products > Cigarettes"),
7402
+ 'value' => 2463
7403
+ ),array(
7404
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Tobacco Products > Cigars"),
7405
+ 'value' => 2464
7406
+ ),array(
7407
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Tobacco Products > Electronic Cigarettes"),
7408
+ 'value' => 2465
7409
+ ),array(
7410
+ 'label' => Mage::helper('richsnippet')->__("Food, Beverages & Tobacco > Tobacco Products > Loose Tobacco"),
7411
+ 'value' => 2466
7412
+ ),array(
7413
+ 'label' => Mage::helper('richsnippet')->__("Furniture"),
7414
+ 'value' => 2467
7415
+ ),array(
7416
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture"),
7417
+ 'value' => 2468
7418
+ ),array(
7419
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Baby & Toddler Furniture Sets"),
7420
+ 'value' => 2469
7421
+ ),array(
7422
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Bassinet & Cradle Accessories"),
7423
+ 'value' => 2470
7424
+ ),array(
7425
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Bassinet & Cradle Accessories > Bassinet Stands"),
7426
+ 'value' => 2471
7427
+ ),array(
7428
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Bassinets & Cradles"),
7429
+ 'value' => 2472
7430
+ ),array(
7431
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Changing Tables"),
7432
+ 'value' => 2473
7433
+ ),array(
7434
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories"),
7435
+ 'value' => 2474
7436
+ ),array(
7437
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories > Crib Bumpers & Liners"),
7438
+ 'value' => 2475
7439
+ ),array(
7440
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Crib & Toddler Bed Accessories > Crib Conversion Kits"),
7441
+ 'value' => 2476
7442
+ ),array(
7443
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Cribs & Toddler Beds"),
7444
+ 'value' => 2477
7445
+ ),array(
7446
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > High Chair & Booster Seat Accessories"),
7447
+ 'value' => 2478
7448
+ ),array(
7449
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > High Chairs & Boosters"),
7450
+ 'value' => 2479
7451
+ ),array(
7452
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Baby & Toddler Furniture > Playroom Furniture"),
7453
+ 'value' => 2480
7454
+ ),array(
7455
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories"),
7456
+ 'value' => 2481
7457
+ ),array(
7458
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Bed Accessories"),
7459
+ 'value' => 2482
7460
+ ),array(
7461
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Bed Accessories > Waterbed Accessories"),
7462
+ 'value' => 2483
7463
+ ),array(
7464
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Bed Frames"),
7465
+ 'value' => 2484
7466
+ ),array(
7467
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Beds"),
7468
+ 'value' => 2485
7469
+ ),array(
7470
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Beds > Bunk Beds"),
7471
+ 'value' => 2486
7472
+ ),array(
7473
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Beds > Day Beds"),
7474
+ 'value' => 2487
7475
+ ),array(
7476
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Beds > Murphy Beds"),
7477
+ 'value' => 2488
7478
+ ),array(
7479
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Beds > Trundle Beds"),
7480
+ 'value' => 2489
7481
+ ),array(
7482
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Headboards & Footboards"),
7483
+ 'value' => 2490
7484
+ ),array(
7485
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Mattress Foundations"),
7486
+ 'value' => 2491
7487
+ ),array(
7488
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Mattresses"),
7489
+ 'value' => 2492
7490
+ ),array(
7491
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Beds & Accessories > Mattresses > Waterbeds"),
7492
+ 'value' => 2493
7493
+ ),array(
7494
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Benches"),
7495
+ 'value' => 2494
7496
+ ),array(
7497
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Benches > Kitchen & Dining Benches"),
7498
+ 'value' => 2495
7499
+ ),array(
7500
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Benches > Storage & Entryway Benches"),
7501
+ 'value' => 2496
7502
+ ),array(
7503
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Benches > Vanity Benches"),
7504
+ 'value' => 2497
7505
+ ),array(
7506
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage"),
7507
+ 'value' => 2498
7508
+ ),array(
7509
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Armoires & Wardrobes"),
7510
+ 'value' => 2499
7511
+ ),array(
7512
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Buffets & Sideboards"),
7513
+ 'value' => 2500
7514
+ ),array(
7515
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > China Cabinets & Hutches"),
7516
+ 'value' => 2501
7517
+ ),array(
7518
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Dressers"),
7519
+ 'value' => 2502
7520
+ ),array(
7521
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > File Cabinets"),
7522
+ 'value' => 2503
7523
+ ),array(
7524
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Magazine Racks"),
7525
+ 'value' => 2504
7526
+ ),array(
7527
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Media Storage"),
7528
+ 'value' => 2505
7529
+ ),array(
7530
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Media Storage > Media Cabinets"),
7531
+ 'value' => 2506
7532
+ ),array(
7533
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Media Storage > Media Racks & Towers"),
7534
+ 'value' => 2507
7535
+ ),array(
7536
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Pantries"),
7537
+ 'value' => 2508
7538
+ ),array(
7539
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Storage Chests"),
7540
+ 'value' => 2509
7541
+ ),array(
7542
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Storage Chests > Hope Chests"),
7543
+ 'value' => 2510
7544
+ ),array(
7545
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Storage Chests > Toy Chests"),
7546
+ 'value' => 2511
7547
+ ),array(
7548
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Vanities"),
7549
+ 'value' => 2512
7550
+ ),array(
7551
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Vanities > Bathroom Vanities"),
7552
+ 'value' => 2513
7553
+ ),array(
7554
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Vanities > Bedroom Vanities"),
7555
+ 'value' => 2514
7556
+ ),array(
7557
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Wine & Liquor Cabinets"),
7558
+ 'value' => 2515
7559
+ ),array(
7560
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Cabinets & Storage > Wine Racks"),
7561
+ 'value' => 2516
7562
+ ),array(
7563
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Carts & Islands"),
7564
+ 'value' => 2517
7565
+ ),array(
7566
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Carts & Islands > Kitchen & Dining Carts"),
7567
+ 'value' => 2518
7568
+ ),array(
7569
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Carts & Islands > Kitchen Islands"),
7570
+ 'value' => 2519
7571
+ ),array(
7572
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chair Accessories"),
7573
+ 'value' => 2520
7574
+ ),array(
7575
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs"),
7576
+ 'value' => 2521
7577
+ ),array(
7578
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Arm Chairs, Recliners & Sleeper Chairs"),
7579
+ 'value' => 2522
7580
+ ),array(
7581
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Arm Chairs, Recliners & Sleeper Chairs > Arm Chairs"),
7582
+ 'value' => 2523
7583
+ ),array(
7584
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Arm Chairs, Recliners & Sleeper Chairs > Recliners"),
7585
+ 'value' => 2524
7586
+ ),array(
7587
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Arm Chairs, Recliners & Sleeper Chairs > Sleeper Chairs"),
7588
+ 'value' => 2525
7589
+ ),array(
7590
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Bar Stools"),
7591
+ 'value' => 2526
7592
+ ),array(
7593
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Bean Bag Chairs"),
7594
+ 'value' => 2527
7595
+ ),array(
7596
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Chaises"),
7597
+ 'value' => 2528
7598
+ ),array(
7599
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Electric Massaging Chairs"),
7600
+ 'value' => 2529
7601
+ ),array(
7602
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Folding Chairs & Stools"),
7603
+ 'value' => 2530
7604
+ ),array(
7605
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Gaming Chairs"),
7606
+ 'value' => 2531
7607
+ ),array(
7608
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Hanging Chairs"),
7609
+ 'value' => 2532
7610
+ ),array(
7611
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Kitchen & Dining Room Chairs"),
7612
+ 'value' => 2533
7613
+ ),array(
7614
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Rocking Chairs"),
7615
+ 'value' => 2534
7616
+ ),array(
7617
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Chairs > Slipper Chairs"),
7618
+ 'value' => 2535
7619
+ ),array(
7620
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Entertainment Centers & TV Stands"),
7621
+ 'value' => 2536
7622
+ ),array(
7623
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Furniture Sets"),
7624
+ 'value' => 2537
7625
+ ),array(
7626
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Furniture Sets > Bedroom Furniture Sets"),
7627
+ 'value' => 2538
7628
+ ),array(
7629
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Furniture Sets > Kitchen & Dining Furniture Sets"),
7630
+ 'value' => 2539
7631
+ ),array(
7632
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Furniture Sets > Living Room Furniture Sets"),
7633
+ 'value' => 2540
7634
+ ),array(
7635
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Futon Frames"),
7636
+ 'value' => 2541
7637
+ ),array(
7638
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Futon Pads"),
7639
+ 'value' => 2542
7640
+ ),array(
7641
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Futons"),
7642
+ 'value' => 2543
7643
+ ),array(
7644
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture"),
7645
+ 'value' => 2544
7646
+ ),array(
7647
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Desk Hutches"),
7648
+ 'value' => 2545
7649
+ ),array(
7650
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Desks"),
7651
+ 'value' => 2546
7652
+ ),array(
7653
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Office Chair Accessories"),
7654
+ 'value' => 2547
7655
+ ),array(
7656
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Office Chairs"),
7657
+ 'value' => 2548
7658
+ ),array(
7659
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Office Chairs > Kneeling Chairs"),
7660
+ 'value' => 2549
7661
+ ),array(
7662
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Workspace Tables"),
7663
+ 'value' => 2550
7664
+ ),array(
7665
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Workspace Tables > Art & Drafting Tables"),
7666
+ 'value' => 2551
7667
+ ),array(
7668
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Workspace Tables > Conference Room Tables"),
7669
+ 'value' => 2552
7670
+ ),array(
7671
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Workstation & Cubicle Accessories"),
7672
+ 'value' => 2553
7673
+ ),array(
7674
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Office Furniture > Workstations & Cubicles"),
7675
+ 'value' => 2554
7676
+ ),array(
7677
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Ottomans"),
7678
+ 'value' => 2555
7679
+ ),array(
7680
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Ottomans > Convertible Ottomans"),
7681
+ 'value' => 2556
7682
+ ),array(
7683
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Ottomans > Glider Ottomans"),
7684
+ 'value' => 2557
7685
+ ),array(
7686
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Ottomans > Storage Ottomans"),
7687
+ 'value' => 2558
7688
+ ),array(
7689
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture"),
7690
+ 'value' => 2559
7691
+ ),array(
7692
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Beds"),
7693
+ 'value' => 2560
7694
+ ),array(
7695
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Furniture Sets"),
7696
+ 'value' => 2561
7697
+ ),array(
7698
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Ottomans"),
7699
+ 'value' => 2562
7700
+ ),array(
7701
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Seating"),
7702
+ 'value' => 2563
7703
+ ),array(
7704
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Benches"),
7705
+ 'value' => 2564
7706
+ ),array(
7707
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Chairs"),
7708
+ 'value' => 2565
7709
+ ),array(
7710
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Seating > Outdoor Sofas"),
7711
+ 'value' => 2566
7712
+ ),array(
7713
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Seating > Sunloungers"),
7714
+ 'value' => 2567
7715
+ ),array(
7716
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Storage Boxes"),
7717
+ 'value' => 2568
7718
+ ),array(
7719
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture > Outdoor Tables"),
7720
+ 'value' => 2569
7721
+ ),array(
7722
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture Accessories"),
7723
+ 'value' => 2570
7724
+ ),array(
7725
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Outdoor Furniture Accessories > Outdoor Furniture Covers"),
7726
+ 'value' => 2571
7727
+ ),array(
7728
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Room Divider Accessories"),
7729
+ 'value' => 2572
7730
+ ),array(
7731
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Room Dividers"),
7732
+ 'value' => 2573
7733
+ ),array(
7734
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Shelving"),
7735
+ 'value' => 2574
7736
+ ),array(
7737
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Shelving > Bookcases & Standing Shelves"),
7738
+ 'value' => 2575
7739
+ ),array(
7740
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Shelving Accessories"),
7741
+ 'value' => 2576
7742
+ ),array(
7743
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Shelving Accessories > Replacement Shelves"),
7744
+ 'value' => 2577
7745
+ ),array(
7746
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Sofa Accessories"),
7747
+ 'value' => 2578
7748
+ ),array(
7749
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Sofa Accessories > Chair & Sofa Supports"),
7750
+ 'value' => 2579
7751
+ ),array(
7752
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Sofas"),
7753
+ 'value' => 2580
7754
+ ),array(
7755
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Sofas > Loveseats"),
7756
+ 'value' => 2581
7757
+ ),array(
7758
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Sofas > Sectional Sofas"),
7759
+ 'value' => 2582
7760
+ ),array(
7761
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Sofas > Sofabeds"),
7762
+ 'value' => 2583
7763
+ ),array(
7764
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Table Accessories"),
7765
+ 'value' => 2584
7766
+ ),array(
7767
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Table Accessories > Table Legs"),
7768
+ 'value' => 2585
7769
+ ),array(
7770
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Table Accessories > Table Tops"),
7771
+ 'value' => 2586
7772
+ ),array(
7773
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables"),
7774
+ 'value' => 2587
7775
+ ),array(
7776
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Accent Tables"),
7777
+ 'value' => 2588
7778
+ ),array(
7779
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Accent Tables > Coffee Tables"),
7780
+ 'value' => 2589
7781
+ ),array(
7782
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Accent Tables > End Tables"),
7783
+ 'value' => 2590
7784
+ ),array(
7785
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Accent Tables > Sofa Tables"),
7786
+ 'value' => 2591
7787
+ ),array(
7788
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Activity Tables"),
7789
+ 'value' => 2592
7790
+ ),array(
7791
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Folding Tables"),
7792
+ 'value' => 2593
7793
+ ),array(
7794
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Kitchen & Dining Room Tables"),
7795
+ 'value' => 2594
7796
+ ),array(
7797
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Kitchen & Dining Room Tables > Hightop Tables"),
7798
+ 'value' => 2595
7799
+ ),array(
7800
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Nightstands"),
7801
+ 'value' => 2596
7802
+ ),array(
7803
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Poker & Game Tables"),
7804
+ 'value' => 2597
7805
+ ),array(
7806
+ 'label' => Mage::helper('richsnippet')->__("Furniture > Tables > Sewing Machine Tables"),
7807
+ 'value' => 2598
7808
+ ),array(
7809
+ 'label' => Mage::helper('richsnippet')->__("Hardware"),
7810
+ 'value' => 2599
7811
+ ),array(
7812
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants"),
7813
+ 'value' => 2600
7814
+ ),array(
7815
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Caulk"),
7816
+ 'value' => 2601
7817
+ ),array(
7818
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Cements"),
7819
+ 'value' => 2602
7820
+ ),array(
7821
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Coatings"),
7822
+ 'value' => 2603
7823
+ ),array(
7824
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues"),
7825
+ 'value' => 2604
7826
+ ),array(
7827
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues > Glitter Glue"),
7828
+ 'value' => 2605
7829
+ ),array(
7830
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues > Glue Gun Sticks"),
7831
+ 'value' => 2606
7832
+ ),array(
7833
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues > Glue Sticks"),
7834
+ 'value' => 2607
7835
+ ),array(
7836
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues > Rubber Cement"),
7837
+ 'value' => 2608
7838
+ ),array(
7839
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues > Super Glue"),
7840
+ 'value' => 2609
7841
+ ),array(
7842
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues > White Glue"),
7843
+ 'value' => 2610
7844
+ ),array(
7845
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Glues > Wood Glue"),
7846
+ 'value' => 2611
7847
+ ),array(
7848
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Joint Compounds"),
7849
+ 'value' => 2612
7850
+ ),array(
7851
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Adhesives, Coatings & Sealants > Sealants"),
7852
+ 'value' => 2613
7853
+ ),array(
7854
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials"),
7855
+ 'value' => 2614
7856
+ ),array(
7857
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Bricks, Stones & Concrete"),
7858
+ 'value' => 2615
7859
+ ),array(
7860
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Carpets"),
7861
+ 'value' => 2616
7862
+ ),array(
7863
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Countertops"),
7864
+ 'value' => 2617
7865
+ ),array(
7866
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Countertops > Ceramic & Porcelain Countertops"),
7867
+ 'value' => 2618
7868
+ ),array(
7869
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Countertops > Granite Countertops"),
7870
+ 'value' => 2619
7871
+ ),array(
7872
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Countertops > Hardwood Countertops"),
7873
+ 'value' => 2620
7874
+ ),array(
7875
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Countertops > Laminate Countertops"),
7876
+ 'value' => 2621
7877
+ ),array(
7878
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Countertops > Marble Countertops"),
7879
+ 'value' => 2622
7880
+ ),array(
7881
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Countertops > Vinyl Countertops"),
7882
+ 'value' => 2623
7883
+ ),array(
7884
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Doors"),
7885
+ 'value' => 2624
7886
+ ),array(
7887
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Doors > Garage Doors"),
7888
+ 'value' => 2625
7889
+ ),array(
7890
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Doors > Home Doors"),
7891
+ 'value' => 2626
7892
+ ),array(
7893
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Doors > Home Doors > Screen Doors"),
7894
+ 'value' => 2627
7895
+ ),array(
7896
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Doors > Utility Doors"),
7897
+ 'value' => 2628
7898
+ ),array(
7899
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Doors > Utility Doors > Pet Doors"),
7900
+ 'value' => 2629
7901
+ ),array(
7902
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring"),
7903
+ 'value' => 2630
7904
+ ),array(
7905
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Artificial Turf"),
7906
+ 'value' => 2631
7907
+ ),array(
7908
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Ceramic & Porcelain Flooring"),
7909
+ 'value' => 2632
7910
+ ),array(
7911
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Granite Flooring"),
7912
+ 'value' => 2633
7913
+ ),array(
7914
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Hardwood Flooring"),
7915
+ 'value' => 2634
7916
+ ),array(
7917
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Laminate Flooring"),
7918
+ 'value' => 2635
7919
+ ),array(
7920
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Marble Flooring"),
7921
+ 'value' => 2636
7922
+ ),array(
7923
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Rubber Flooring"),
7924
+ 'value' => 2637
7925
+ ),array(
7926
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Flooring > Vinyl Flooring"),
7927
+ 'value' => 2638
7928
+ ),array(
7929
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Glass"),
7930
+ 'value' => 2639
7931
+ ),array(
7932
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Hatches"),
7933
+ 'value' => 2640
7934
+ ),array(
7935
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Lumber"),
7936
+ 'value' => 2641
7937
+ ),array(
7938
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Molding"),
7939
+ 'value' => 2642
7940
+ ),array(
7941
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Shutters"),
7942
+ 'value' => 2643
7943
+ ),array(
7944
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Sound Dampening Materials"),
7945
+ 'value' => 2644
7946
+ ),array(
7947
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Staircases"),
7948
+ 'value' => 2645
7949
+ ),array(
7950
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Tile"),
7951
+ 'value' => 2646
7952
+ ),array(
7953
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Tile > Tile Countertops"),
7954
+ 'value' => 2647
7955
+ ),array(
7956
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Tile > Tile Flooring"),
7957
+ 'value' => 2648
7958
+ ),array(
7959
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Wall Paneling"),
7960
+ 'value' => 2649
7961
+ ),array(
7962
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Building Materials > Windows"),
7963
+ 'value' => 2650
7964
+ ),array(
7965
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Cabinetry"),
7966
+ 'value' => 2651
7967
+ ),array(
7968
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals"),
7969
+ 'value' => 2652
7970
+ ),array(
7971
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > Acid Neutralizers"),
7972
+ 'value' => 2653
7973
+ ),array(
7974
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > Ammonia"),
7975
+ 'value' => 2654
7976
+ ),array(
7977
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > Chimney Cleaners"),
7978
+ 'value' => 2655
7979
+ ),array(
7980
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > Concrete & Masonry Cleaners"),
7981
+ 'value' => 2656
7982
+ ),array(
7983
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > De-icers"),
7984
+ 'value' => 2657
7985
+ ),array(
7986
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > Deck & Fence Cleaners"),
7987
+ 'value' => 2658
7988
+ ),array(
7989
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > Drain Cleaners"),
7990
+ 'value' => 2659
7991
+ ),array(
7992
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Chemicals > Septic Tank & Cesspool Cleaners"),
7993
+ 'value' => 2660
7994
+ ),array(
7995
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies"),
7996
+ 'value' => 2661
7997
+ ),array(
7998
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Ballasts & Starters"),
7999
+ 'value' => 2662
8000
+ ),array(
8001
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Bypass Switches"),
8002
+ 'value' => 2663
8003
+ ),array(
8004
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Charge Controllers"),
8005
+ 'value' => 2664
8006
+ ),array(
8007
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Circuit Breaker Panels"),
8008
+ 'value' => 2665
8009
+ ),array(
8010
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Electrical Plug Caps"),
8011
+ 'value' => 2666
8012
+ ),array(
8013
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Electrical Switches"),
8014
+ 'value' => 2667
8015
+ ),array(
8016
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Electrical Switches > Light Switches"),
8017
+ 'value' => 2668
8018
+ ),array(
8019
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Electrical Timers"),
8020
+ 'value' => 2669
8021
+ ),array(
8022
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Electrical Wires"),
8023
+ 'value' => 2670
8024
+ ),array(
8025
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Extension Cord Accessories"),
8026
+ 'value' => 2671
8027
+ ),array(
8028
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Extension Cord Accessories > Extension Cord Connectors"),
8029
+ 'value' => 2672
8030
+ ),array(
8031
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Extension Cord Accessories > Extension Cord Reels & Winders"),
8032
+ 'value' => 2673
8033
+ ),array(
8034
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Extension Cords"),
8035
+ 'value' => 2674
8036
+ ),array(
8037
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Heat-Shrink Tubing"),
8038
+ 'value' => 2675
8039
+ ),array(
8040
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Mount Boxes & Brackets"),
8041
+ 'value' => 2676
8042
+ ),array(
8043
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Relays"),
8044
+ 'value' => 2677
8045
+ ),array(
8046
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Wall Plates"),
8047
+ 'value' => 2678
8048
+ ),array(
8049
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Wall Sockets"),
8050
+ 'value' => 2679
8051
+ ),array(
8052
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Wire Binding Spools"),
8053
+ 'value' => 2680
8054
+ ),array(
8055
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Electrical Supplies > Wire Caps & Nuts"),
8056
+ 'value' => 2681
8057
+ ),array(
8058
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Generators"),
8059
+ 'value' => 2682
8060
+ ),array(
8061
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories"),
8062
+ 'value' => 2683
8063
+ ),array(
8064
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Brackets"),
8065
+ 'value' => 2684
8066
+ ),array(
8067
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Bungee Cords"),
8068
+ 'value' => 2685
8069
+ ),array(
8070
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Cabinet Hardware"),
8071
+ 'value' => 2686
8072
+ ),array(
8073
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Backplates"),
8074
+ 'value' => 2687
8075
+ ),array(
8076
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Catches"),
8077
+ 'value' => 2688
8078
+ ),array(
8079
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Doors"),
8080
+ 'value' => 2689
8081
+ ),array(
8082
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Knobs & Handles"),
8083
+ 'value' => 2690
8084
+ ),array(
8085
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Cabinet Hardware > Cabinet Locks"),
8086
+ 'value' => 2691
8087
+ ),array(
8088
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Chains"),
8089
+ 'value' => 2692
8090
+ ),array(
8091
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Coils"),
8092
+ 'value' => 2693
8093
+ ),array(
8094
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Concrete Molds"),
8095
+ 'value' => 2694
8096
+ ),array(
8097
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Controls"),
8098
+ 'value' => 2695
8099
+ ),array(
8100
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Controls > Control Panels"),
8101
+ 'value' => 2696
8102
+ ),array(
8103
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Controls > HVAC Controls"),
8104
+ 'value' => 2697
8105
+ ),array(
8106
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Controls > Thermostats"),
8107
+ 'value' => 2698
8108
+ ),array(
8109
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Door Hardware"),
8110
+ 'value' => 2699
8111
+ ),array(
8112
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Door Hardware > Door Bells & Chimes"),
8113
+ 'value' => 2700
8114
+ ),array(
8115
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Door Hardware > Door Closers"),
8116
+ 'value' => 2701
8117
+ ),array(
8118
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Door Hardware > Door Knobs & Handles"),
8119
+ 'value' => 2702
8120
+ ),array(
8121
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Door Hardware > Door Knockers"),
8122
+ 'value' => 2703
8123
+ ),array(
8124
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Door Hardware > Door Stops"),
8125
+ 'value' => 2704
8126
+ ),array(
8127
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Door Hardware > Door Strikes"),
8128
+ 'value' => 2705
8129
+ ),array(
8130
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Dowel Pins & Rods"),
8131
+ 'value' => 2706
8132
+ ),array(
8133
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Drop Cloths"),
8134
+ 'value' => 2707
8135
+ ),array(
8136
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Drywall Anchors"),
8137
+ 'value' => 2708
8138
+ ),array(
8139
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Filters & Screens"),
8140
+ 'value' => 2709
8141
+ ),array(
8142
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Flagging & Caution Tape"),
8143
+ 'value' => 2710
8144
+ ),array(
8145
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Gas Hoses"),
8146
+ 'value' => 2711
8147
+ ),array(
8148
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape"),
8149
+ 'value' => 2712
8150
+ ),array(
8151
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Copper Tape"),
8152
+ 'value' => 2713
8153
+ ),array(
8154
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Drywall Tape"),
8155
+ 'value' => 2714
8156
+ ),array(
8157
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Duct Tape"),
8158
+ 'value' => 2715
8159
+ ),array(
8160
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Electrical Tape"),
8161
+ 'value' => 2716
8162
+ ),array(
8163
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Foil Tape"),
8164
+ 'value' => 2717
8165
+ ),array(
8166
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Gaffers Tape"),
8167
+ 'value' => 2718
8168
+ ),array(
8169
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Heat Tape"),
8170
+ 'value' => 2719
8171
+ ),array(
8172
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Masking Tape"),
8173
+ 'value' => 2720
8174
+ ),array(
8175
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hardware Tape > Teflon Tape"),
8176
+ 'value' => 2721
8177
+ ),array(
8178
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Hinges"),
8179
+ 'value' => 2722
8180
+ ),array(
8181
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Latches"),
8182
+ 'value' => 2723
8183
+ ),array(
8184
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Lubricants"),
8185
+ 'value' => 2724
8186
+ ),array(
8187
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Lubrication Hoses"),
8188
+ 'value' => 2725
8189
+ ),array(
8190
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Nails"),
8191
+ 'value' => 2726
8192
+ ),array(
8193
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Nuts & Bolts"),
8194
+ 'value' => 2727
8195
+ ),array(
8196
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Pneumatic Hoses"),
8197
+ 'value' => 2728
8198
+ ),array(
8199
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Pull Chains"),
8200
+ 'value' => 2729
8201
+ ),array(
8202
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Pulleys"),
8203
+ 'value' => 2730
8204
+ ),array(
8205
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Rivets"),
8206
+ 'value' => 2731
8207
+ ),array(
8208
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Rope"),
8209
+ 'value' => 2732
8210
+ ),array(
8211
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Screw Posts"),
8212
+ 'value' => 2733
8213
+ ),array(
8214
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Screws"),
8215
+ 'value' => 2734
8216
+ ),array(
8217
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Screws > Drywall Screws"),
8218
+ 'value' => 2735
8219
+ ),array(
8220
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Screws > Metal Screws"),
8221
+ 'value' => 2736
8222
+ ),array(
8223
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Screws > Wood Screws"),
8224
+ 'value' => 2737
8225
+ ),array(
8226
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Solder & Flux"),
8227
+ 'value' => 2738
8228
+ ),array(
8229
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tarps"),
8230
+ 'value' => 2739
8231
+ ),array(
8232
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tie Down Straps"),
8233
+ 'value' => 2740
8234
+ ),array(
8235
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization"),
8236
+ 'value' => 2741
8237
+ ),array(
8238
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization > Garden Hose Storage"),
8239
+ 'value' => 2742
8240
+ ),array(
8241
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization > Tool & Duty Belts"),
8242
+ 'value' => 2743
8243
+ ),array(
8244
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization > Tool Bags"),
8245
+ 'value' => 2744
8246
+ ),array(
8247
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization > Tool Boxes"),
8248
+ 'value' => 2745
8249
+ ),array(
8250
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization > Tool Cabinets & Chests"),
8251
+ 'value' => 2746
8252
+ ),array(
8253
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization > Tool Sheaths"),
8254
+ 'value' => 2747
8255
+ ),array(
8256
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Tool Storage & Organization > Work Benches"),
8257
+ 'value' => 2748
8258
+ ),array(
8259
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Twine"),
8260
+ 'value' => 2749
8261
+ ),array(
8262
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Utility Wire"),
8263
+ 'value' => 2750
8264
+ ),array(
8265
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Vents & Flues"),
8266
+ 'value' => 2751
8267
+ ),array(
8268
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Washers"),
8269
+ 'value' => 2752
8270
+ ),array(
8271
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Accessories > Wood Biscuits"),
8272
+ 'value' => 2753
8273
+ ),array(
8274
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Hardware Torches"),
8275
+ 'value' => 2754
8276
+ ),array(
8277
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing"),
8278
+ 'value' => 2755
8279
+ ),array(
8280
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing > Fence Pickets"),
8281
+ 'value' => 2756
8282
+ ),array(
8283
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing > Fences"),
8284
+ 'value' => 2757
8285
+ ),array(
8286
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing > Fences > Wire Fencing"),
8287
+ 'value' => 2758
8288
+ ),array(
8289
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing > Fences > Wire Fencing > Barbed & Razor Wire"),
8290
+ 'value' => 2759
8291
+ ),array(
8292
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing > Fences > Wire Fencing > Chain Link Fencing"),
8293
+ 'value' => 2760
8294
+ ),array(
8295
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing > Fencing Posts"),
8296
+ 'value' => 2761
8297
+ ),array(
8298
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Home Fencing > Gates"),
8299
+ 'value' => 2762
8300
+ ),array(
8301
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Insulation"),
8302
+ 'value' => 2763
8303
+ ),array(
8304
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Insulation > Building Insulation"),
8305
+ 'value' => 2764
8306
+ ),array(
8307
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Insulation > Pipe Insulation"),
8308
+ 'value' => 2765
8309
+ ),array(
8310
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Insulation > Window & Door Insulation"),
8311
+ 'value' => 2766
8312
+ ),array(
8313
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Key Blanks"),
8314
+ 'value' => 2767
8315
+ ),array(
8316
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Locks & Locksmithing"),
8317
+ 'value' => 2768
8318
+ ),array(
8319
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Locks & Locksmithing > Cylinder Locks"),
8320
+ 'value' => 2769
8321
+ ),array(
8322
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Locks & Locksmithing > Deadbolt Locks"),
8323
+ 'value' => 2770
8324
+ ),array(
8325
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Locks & Locksmithing > Key Card Entry Systems"),
8326
+ 'value' => 2771
8327
+ ),array(
8328
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Locks & Locksmithing > Padlocks"),
8329
+ 'value' => 2772
8330
+ ),array(
8331
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Locks & Locksmithing > Pocket Door Locks"),
8332
+ 'value' => 2773
8333
+ ),array(
8334
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies"),
8335
+ 'value' => 2774
8336
+ ),array(
8337
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Finishes"),
8338
+ 'value' => 2775
8339
+ ),array(
8340
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Paint"),
8341
+ 'value' => 2776
8342
+ ),array(
8343
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Paint Binders"),
8344
+ 'value' => 2777
8345
+ ),array(
8346
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Paint Strippers"),
8347
+ 'value' => 2778
8348
+ ),array(
8349
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Primers"),
8350
+ 'value' => 2779
8351
+ ),array(
8352
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Solvents"),
8353
+ 'value' => 2780
8354
+ ),array(
8355
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Stains"),
8356
+ 'value' => 2781
8357
+ ),array(
8358
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Varnishes"),
8359
+ 'value' => 2782
8360
+ ),array(
8361
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Painting & Wall Covering Supplies > Wallpaper"),
8362
+ 'value' => 2783
8363
+ ),array(
8364
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing"),
8365
+ 'value' => 2784
8366
+ ),array(
8367
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Ballcocks & Flappers"),
8368
+ 'value' => 2785
8369
+ ),array(
8370
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Drain Accessories"),
8371
+ 'value' => 2786
8372
+ ),array(
8373
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Drain Accessories > Drain Frames"),
8374
+ 'value' => 2787
8375
+ ),array(
8376
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Drain Accessories > Drain Liners"),
8377
+ 'value' => 2788
8378
+ ),array(
8379
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Drain Accessories > Drain Openers"),
8380
+ 'value' => 2789
8381
+ ),array(
8382
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Drain Accessories > Drain Rods"),
8383
+ 'value' => 2790
8384
+ ),array(
8385
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Drain Accessories > Plumbing Wastes"),
8386
+ 'value' => 2791
8387
+ ),array(
8388
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Fuel Lines & Accessories"),
8389
+ 'value' => 2792
8390
+ ),array(
8391
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Hoses"),
8392
+ 'value' => 2793
8393
+ ),array(
8394
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Nozzles"),
8395
+ 'value' => 2794
8396
+ ),array(
8397
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fittings"),
8398
+ 'value' => 2795
8399
+ ),array(
8400
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fittings > Flanges"),
8401
+ 'value' => 2796
8402
+ ),array(
8403
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fittings > Pipe Adaptors & Bushings"),
8404
+ 'value' => 2797
8405
+ ),array(
8406
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fittings > Pipe Caps & Plugs"),
8407
+ 'value' => 2798
8408
+ ),array(
8409
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fittings > Pipe Clamps"),
8410
+ 'value' => 2799
8411
+ ),array(
8412
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fittings > Pipe Connectors"),
8413
+ 'value' => 2800
8414
+ ),array(
8415
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fittings > Plumbing Gaskets"),
8416
+ 'value' => 2801
8417
+ ),array(
8418
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures"),
8419
+ 'value' => 2802
8420
+ ),array(
8421
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Bathtub Accessories"),
8422
+ 'value' => 2803
8423
+ ),array(
8424
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Bathtub Accessories > Bathtub Skirts"),
8425
+ 'value' => 2804
8426
+ ),array(
8427
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Bathtub Accessories > Bathtub Spouts"),
8428
+ 'value' => 2805
8429
+ ),array(
8430
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Bathtubs"),
8431
+ 'value' => 2806
8432
+ ),array(
8433
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Faucet Accessories"),
8434
+ 'value' => 2807
8435
+ ),array(
8436
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Faucets"),
8437
+ 'value' => 2808
8438
+ ),array(
8439
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Faucets > Pre-Rinse Faucets"),
8440
+ 'value' => 2809
8441
+ ),array(
8442
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Fixture Plates"),
8443
+ 'value' => 2810
8444
+ ),array(
8445
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower"),
8446
+ 'value' => 2811
8447
+ ),array(
8448
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Arm Diverters"),
8449
+ 'value' => 2812
8450
+ ),array(
8451
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Arm Mounts"),
8452
+ 'value' => 2813
8453
+ ),array(
8454
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Bars"),
8455
+ 'value' => 2814
8456
+ ),array(
8457
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Bases"),
8458
+ 'value' => 2815
8459
+ ),array(
8460
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Columns"),
8461
+ 'value' => 2816
8462
+ ),array(
8463
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Doors & Enclosures"),
8464
+ 'value' => 2817
8465
+ ),array(
8466
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Heads"),
8467
+ 'value' => 2818
8468
+ ),array(
8469
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Hoses"),
8470
+ 'value' => 2819
8471
+ ),array(
8472
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Rods"),
8473
+ 'value' => 2820
8474
+ ),array(
8475
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Stalls & Kits"),
8476
+ 'value' => 2821
8477
+ ),array(
8478
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Walls & Surrounds"),
8479
+ 'value' => 2822
8480
+ ),array(
8481
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Shower > Shower Water Filters"),
8482
+ 'value' => 2823
8483
+ ),array(
8484
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Sink Accessories"),
8485
+ 'value' => 2824
8486
+ ),array(
8487
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Sink Accessories > Sink Legs"),
8488
+ 'value' => 2825
8489
+ ),array(
8490
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Sinks"),
8491
+ 'value' => 2826
8492
+ ),array(
8493
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Sinks > Bathroom Sinks"),
8494
+ 'value' => 2827
8495
+ ),array(
8496
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Sinks > Kitchen & Utility Sinks"),
8497
+ 'value' => 2828
8498
+ ),array(
8499
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories"),
8500
+ 'value' => 2829
8501
+ ),array(
8502
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories > Toilet & Bidet Seats"),
8503
+ 'value' => 2830
8504
+ ),array(
8505
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories > Toilet Seat Covers"),
8506
+ 'value' => 2831
8507
+ ),array(
8508
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories > Toilet Seat Lid Covers"),
8509
+ 'value' => 2832
8510
+ ),array(
8511
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories > Toilet Tank Covers"),
8512
+ 'value' => 2833
8513
+ ),array(
8514
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories > Toilet Tank Levers"),
8515
+ 'value' => 2834
8516
+ ),array(
8517
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories > Toilet Tanks"),
8518
+ 'value' => 2835
8519
+ ),array(
8520
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilet & Bidet Accessories > Toilet Trim"),
8521
+ 'value' => 2836
8522
+ ),array(
8523
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets"),
8524
+ 'value' => 2837
8525
+ ),array(
8526
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Bidets"),
8527
+ 'value' => 2838
8528
+ ),array(
8529
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Toilets"),
8530
+ 'value' => 2839
8531
+ ),array(
8532
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Fixtures > Toilets & Bidets > Urinals"),
8533
+ 'value' => 2840
8534
+ ),array(
8535
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Pipes"),
8536
+ 'value' => 2841
8537
+ ),array(
8538
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Pipes > Piping Nipples"),
8539
+ 'value' => 2842
8540
+ ),array(
8541
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Pipes > Push-Fit Pipes"),
8542
+ 'value' => 2843
8543
+ ),array(
8544
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Pipes > Steel Pipes"),
8545
+ 'value' => 2844
8546
+ ),array(
8547
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Pumps"),
8548
+ 'value' => 2845
8549
+ ),array(
8550
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Regulators"),
8551
+ 'value' => 2846
8552
+ ),array(
8553
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Stoppers"),
8554
+ 'value' => 2847
8555
+ ),array(
8556
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Taps"),
8557
+ 'value' => 2848
8558
+ ),array(
8559
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Taps > Gas Taps"),
8560
+ 'value' => 2849
8561
+ ),array(
8562
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Taps > Hose Bibbs"),
8563
+ 'value' => 2850
8564
+ ),array(
8565
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Taps > Water Taps"),
8566
+ 'value' => 2851
8567
+ ),array(
8568
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Valves"),
8569
+ 'value' => 2852
8570
+ ),array(
8571
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Plumbing Valves > Ball Valves"),
8572
+ 'value' => 2853
8573
+ ),array(
8574
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Repair Kits"),
8575
+ 'value' => 2854
8576
+ ),array(
8577
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Repair Kits > Tube Repair Kits"),
8578
+ 'value' => 2855
8579
+ ),array(
8580
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Thermocouples"),
8581
+ 'value' => 2856
8582
+ ),array(
8583
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Traps & Strainers"),
8584
+ 'value' => 2857
8585
+ ),array(
8586
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Traps & Strainers > Bath Traps"),
8587
+ 'value' => 2858
8588
+ ),array(
8589
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Traps & Strainers > Bottle Traps"),
8590
+ 'value' => 2859
8591
+ ),array(
8592
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Traps & Strainers > Shower Traps"),
8593
+ 'value' => 2860
8594
+ ),array(
8595
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Tube Cleaners"),
8596
+ 'value' => 2861
8597
+ ),array(
8598
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration"),
8599
+ 'value' => 2862
8600
+ ),array(
8601
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > In-Line Water Filters"),
8602
+ 'value' => 2863
8603
+ ),array(
8604
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > In-Line Water Filters > Refrigerator Water Filters"),
8605
+ 'value' => 2864
8606
+ ),array(
8607
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers"),
8608
+ 'value' => 2865
8609
+ ),array(
8610
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers > Drinking Fountains"),
8611
+ 'value' => 2866
8612
+ ),array(
8613
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Dispensers > Water Chillers"),
8614
+ 'value' => 2867
8615
+ ),array(
8616
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Distillers"),
8617
+ 'value' => 2868
8618
+ ),array(
8619
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories"),
8620
+ 'value' => 2869
8621
+ ),array(
8622
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories > Water Filter Cartridges"),
8623
+ 'value' => 2870
8624
+ ),array(
8625
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Filtration Accessories > Water Filter Housings"),
8626
+ 'value' => 2871
8627
+ ),array(
8628
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Softener Accessories"),
8629
+ 'value' => 2872
8630
+ ),array(
8631
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Softener Accessories > Water Softener Salt"),
8632
+ 'value' => 2873
8633
+ ),array(
8634
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Dispensing & Filtration > Water Softeners"),
8635
+ 'value' => 2874
8636
+ ),array(
8637
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Levelers"),
8638
+ 'value' => 2875
8639
+ ),array(
8640
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Water Timers"),
8641
+ 'value' => 2876
8642
+ ),array(
8643
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Plumbing > Well Supplies"),
8644
+ 'value' => 2877
8645
+ ),array(
8646
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Renewable Energy"),
8647
+ 'value' => 2878
8648
+ ),array(
8649
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Renewable Energy > Solar Energy"),
8650
+ 'value' => 2879
8651
+ ),array(
8652
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Renewable Energy > Solar Energy > Solar Energy Kits"),
8653
+ 'value' => 2880
8654
+ ),array(
8655
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Renewable Energy > Solar Energy > Solar Panels"),
8656
+ 'value' => 2881
8657
+ ),array(
8658
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Renewable Energy > Wind Power"),
8659
+ 'value' => 2882
8660
+ ),array(
8661
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Renewable Energy > Wind Power > Wind Turbines"),
8662
+ 'value' => 2883
8663
+ ),array(
8664
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Roofing"),
8665
+ 'value' => 2884
8666
+ ),array(
8667
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Roofing > Gutter Accessories"),
8668
+ 'value' => 2885
8669
+ ),array(
8670
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Roofing > Gutters"),
8671
+ 'value' => 2886
8672
+ ),array(
8673
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Roofing > Roof Flashings"),
8674
+ 'value' => 2887
8675
+ ),array(
8676
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Shop Stools"),
8677
+ 'value' => 2888
8678
+ ),array(
8679
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Storage Tanks"),
8680
+ 'value' => 2889
8681
+ ),array(
8682
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Storage Tanks > Food Tanks"),
8683
+ 'value' => 2890
8684
+ ),array(
8685
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Storage Tanks > Oil Tanks"),
8686
+ 'value' => 2891
8687
+ ),array(
8688
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Storage Tanks > Water Tanks"),
8689
+ 'value' => 2892
8690
+ ),array(
8691
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories"),
8692
+ 'value' => 2893
8693
+ ),array(
8694
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Air Brush Accessories"),
8695
+ 'value' => 2894
8696
+ ),array(
8697
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Axe Accessories"),
8698
+ 'value' => 2895
8699
+ ),array(
8700
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Axe Accessories > Axe Heads"),
8701
+ 'value' => 2896
8702
+ ),array(
8703
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Drill Accessories"),
8704
+ 'value' => 2897
8705
+ ),array(
8706
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Drill Accessories > Drill Bit Extensions"),
8707
+ 'value' => 2898
8708
+ ),array(
8709
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Drill Accessories > Drill Bit Sharpeners"),
8710
+ 'value' => 2899
8711
+ ),array(
8712
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Drill Accessories > Drill Bits"),
8713
+ 'value' => 2900
8714
+ ),array(
8715
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Drill Accessories > Hole Saws"),
8716
+ 'value' => 2901
8717
+ ),array(
8718
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Driver Accessories"),
8719
+ 'value' => 2902
8720
+ ),array(
8721
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Flashlight Accessories"),
8722
+ 'value' => 2903
8723
+ ),array(
8724
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Generator Accessories"),
8725
+ 'value' => 2904
8726
+ ),array(
8727
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Generator Accessories > Generator Covers"),
8728
+ 'value' => 2905
8729
+ ),array(
8730
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Generator Accessories > Generator Replacement Parts"),
8731
+ 'value' => 2906
8732
+ ),array(
8733
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Hammer Accessories"),
8734
+ 'value' => 2907
8735
+ ),array(
8736
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Hammer Accessories > Air Hammer Accessories"),
8737
+ 'value' => 2908
8738
+ ),array(
8739
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Hammer Accessories > Hammer Heads"),
8740
+ 'value' => 2909
8741
+ ),array(
8742
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Hammer Accessories > Hammer Wedges"),
8743
+ 'value' => 2910
8744
+ ),array(
8745
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Industrial Staples"),
8746
+ 'value' => 2911
8747
+ ),array(
8748
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Jigs"),
8749
+ 'value' => 2912
8750
+ ),array(
8751
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Magnetizers & Demagnetizers"),
8752
+ 'value' => 2913
8753
+ ),array(
8754
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Measuring Tool & Sensor Accessories"),
8755
+ 'value' => 2914
8756
+ ),array(
8757
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Gas Detector Accessories"),
8758
+ 'value' => 2915
8759
+ ),array(
8760
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Metal & Voltage Detector Accessories"),
8761
+ 'value' => 2916
8762
+ ),array(
8763
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Measuring Tool & Sensor Accessories > Multimeter Accessories"),
8764
+ 'value' => 2917
8765
+ ),array(
8766
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Paint Tool Accessories"),
8767
+ 'value' => 2918
8768
+ ),array(
8769
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Paint Tool Accessories > Paint Roller Accessories"),
8770
+ 'value' => 2919
8771
+ ),array(
8772
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Power Tool Batteries"),
8773
+ 'value' => 2920
8774
+ ),array(
8775
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Power Tool Chargers"),
8776
+ 'value' => 2921
8777
+ ),array(
8778
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Router Accessories"),
8779
+ 'value' => 2922
8780
+ ),array(
8781
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Router Accessories > Router Bits"),
8782
+ 'value' => 2923
8783
+ ),array(
8784
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Router Accessories > Router Tables"),
8785
+ 'value' => 2924
8786
+ ),array(
8787
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Sandblasting Accessories"),
8788
+ 'value' => 2925
8789
+ ),array(
8790
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Sandblasting Accessories > Sandblasting Cabinets"),
8791
+ 'value' => 2926
8792
+ ),array(
8793
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Sanding Accessories"),
8794
+ 'value' => 2927
8795
+ ),array(
8796
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Sanding Accessories > Sandpaper & Sanding Sponges"),
8797
+ 'value' => 2928
8798
+ ),array(
8799
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Saw Accessories"),
8800
+ 'value' => 2929
8801
+ ),array(
8802
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Saw Accessories > Band Saw Accessories"),
8803
+ 'value' => 2930
8804
+ ),array(
8805
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Saw Accessories > Handheld Circular Saw Accessories"),
8806
+ 'value' => 2931
8807
+ ),array(
8808
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Saw Accessories > Jigsaw Accessories"),
8809
+ 'value' => 2932
8810
+ ),array(
8811
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Saw Accessories > Miter Saw Accessories"),
8812
+ 'value' => 2933
8813
+ ),array(
8814
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Saw Accessories > Table Saw Accessories"),
8815
+ 'value' => 2934
8816
+ ),array(
8817
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Screwdriver Accessories"),
8818
+ 'value' => 2935
8819
+ ),array(
8820
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Screwdriver Accessories > Screwdriver Tips"),
8821
+ 'value' => 2936
8822
+ ),array(
8823
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Shaper Accessories"),
8824
+ 'value' => 2937
8825
+ ),array(
8826
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Shaper Accessories > Shaper Cutters"),
8827
+ 'value' => 2938
8828
+ ),array(
8829
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Soldering Iron Accessories"),
8830
+ 'value' => 2939
8831
+ ),array(
8832
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Soldering Iron Accessories > Soldering Iron Stands"),
8833
+ 'value' => 2940
8834
+ ),array(
8835
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Soldering Iron Accessories > Soldering Iron Tips"),
8836
+ 'value' => 2941
8837
+ ),array(
8838
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Blades"),
8839
+ 'value' => 2942
8840
+ ),array(
8841
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Blades > Saw Blades"),
8842
+ 'value' => 2943
8843
+ ),array(
8844
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Blades > Utility Knife Blades"),
8845
+ 'value' => 2944
8846
+ ),array(
8847
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Handles"),
8848
+ 'value' => 2945
8849
+ ),array(
8850
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Handles > Axe Handles"),
8851
+ 'value' => 2946
8852
+ ),array(
8853
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Handles > Hammer Handles"),
8854
+ 'value' => 2947
8855
+ ),array(
8856
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Sockets"),
8857
+ 'value' => 2948
8858
+ ),array(
8859
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Stands"),
8860
+ 'value' => 2949
8861
+ ),array(
8862
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tool Accessories > Tool Stands > Saw Stands"),
8863
+ 'value' => 2950
8864
+ ),array(
8865
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools"),
8866
+ 'value' => 2951
8867
+ ),array(
8868
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Anvils"),
8869
+ 'value' => 2952
8870
+ ),array(
8871
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Awls"),
8872
+ 'value' => 2953
8873
+ ),array(
8874
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Axes"),
8875
+ 'value' => 2954
8876
+ ),array(
8877
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Benders"),
8878
+ 'value' => 2955
8879
+ ),array(
8880
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Blowguns"),
8881
+ 'value' => 2956
8882
+ ),array(
8883
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Brushes"),
8884
+ 'value' => 2957
8885
+ ),array(
8886
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Brushes > Airbrushes"),
8887
+ 'value' => 2958
8888
+ ),array(
8889
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Brushes > Chimney Brushes"),
8890
+ 'value' => 2959
8891
+ ),array(
8892
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Brushes > Paint Brushes"),
8893
+ 'value' => 2960
8894
+ ),array(
8895
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Brushes > Pipe Brushes"),
8896
+ 'value' => 2961
8897
+ ),array(
8898
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Carpentry Jointers"),
8899
+ 'value' => 2962
8900
+ ),array(
8901
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Carving Tools"),
8902
+ 'value' => 2963
8903
+ ),array(
8904
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Carving Tools > Carving Spoons"),
8905
+ 'value' => 2964
8906
+ ),array(
8907
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Carving Tools > Chisels"),
8908
+ 'value' => 2965
8909
+ ),array(
8910
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Carving Tools > Gouges"),
8911
+ 'value' => 2966
8912
+ ),array(
8913
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Carving Tools > Wood Carving Knives"),
8914
+ 'value' => 2967
8915
+ ),array(
8916
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Caulking Tools"),
8917
+ 'value' => 2968
8918
+ ),array(
8919
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Caulking Tools > Caulking Guns"),
8920
+ 'value' => 2969
8921
+ ),array(
8922
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Caulking Tools > Caulking Irons"),
8923
+ 'value' => 2970
8924
+ ),array(
8925
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Caulking Tools > Caulking Mallets"),
8926
+ 'value' => 2971
8927
+ ),array(
8928
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Compactors"),
8929
+ 'value' => 2972
8930
+ ),array(
8931
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Compressors"),
8932
+ 'value' => 2973
8933
+ ),array(
8934
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Compressors > Air Compressors"),
8935
+ 'value' => 2974
8936
+ ),array(
8937
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Compressors > Gas Compressors"),
8938
+ 'value' => 2975
8939
+ ),array(
8940
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Concrete Brooms"),
8941
+ 'value' => 2976
8942
+ ),array(
8943
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Crowbars"),
8944
+ 'value' => 2977
8945
+ ),array(
8946
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters"),
8947
+ 'value' => 2978
8948
+ ),array(
8949
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Bolt Cutters"),
8950
+ 'value' => 2979
8951
+ ),array(
8952
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Glass Cutters"),
8953
+ 'value' => 2980
8954
+ ),array(
8955
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Nibblers"),
8956
+ 'value' => 2981
8957
+ ),array(
8958
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Nippers"),
8959
+ 'value' => 2982
8960
+ ),array(
8961
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Pipe Cutters"),
8962
+ 'value' => 2983
8963
+ ),array(
8964
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Rebar Cutters"),
8965
+ 'value' => 2984
8966
+ ),array(
8967
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Tile & Shingle Cutters"),
8968
+ 'value' => 2985
8969
+ ),array(
8970
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Cutters > Utility Knives"),
8971
+ 'value' => 2986
8972
+ ),array(
8973
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Deburrers"),
8974
+ 'value' => 2987
8975
+ ),array(
8976
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Die Sets"),
8977
+ 'value' => 2988
8978
+ ),array(
8979
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Dollies & Hand Trucks"),
8980
+ 'value' => 2989
8981
+ ),array(
8982
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Drills"),
8983
+ 'value' => 2990
8984
+ ),array(
8985
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Drills > Augers"),
8986
+ 'value' => 2991
8987
+ ),array(
8988
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Drills > Drill Presses"),
8989
+ 'value' => 2992
8990
+ ),array(
8991
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Drills > Handheld Power Drills"),
8992
+ 'value' => 2993
8993
+ ),array(
8994
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Drills > Mortisers"),
8995
+ 'value' => 2994
8996
+ ),array(
8997
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Drills > Pneumatic Drills"),
8998
+ 'value' => 2995
8999
+ ),array(
9000
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Electrician Fish Tape"),
9001
+ 'value' => 2996
9002
+ ),array(
9003
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Flashlights"),
9004
+ 'value' => 2997
9005
+ ),array(
9006
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Flashlights > Headlamps"),
9007
+ 'value' => 2998
9008
+ ),array(
9009
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Glue Guns"),
9010
+ 'value' => 2999
9011
+ ),array(
9012
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Grease Guns"),
9013
+ 'value' => 3000
9014
+ ),array(
9015
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Grinders"),
9016
+ 'value' => 3001
9017
+ ),array(
9018
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Grips"),
9019
+ 'value' => 3002
9020
+ ),array(
9021
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hammering"),
9022
+ 'value' => 3003
9023
+ ),array(
9024
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hammering > Air Hammers"),
9025
+ 'value' => 3004
9026
+ ),array(
9027
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hammering > Automatic Hammers"),
9028
+ 'value' => 3005
9029
+ ),array(
9030
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hammering > Hammers"),
9031
+ 'value' => 3006
9032
+ ),array(
9033
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hammering > Hammers > Mallets"),
9034
+ 'value' => 3007
9035
+ ),array(
9036
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hammering > Hammers > Sledgehammers"),
9037
+ 'value' => 3008
9038
+ ),array(
9039
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hammering > Jackhammers"),
9040
+ 'value' => 3009
9041
+ ),array(
9042
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hardware Shears"),
9043
+ 'value' => 3010
9044
+ ),array(
9045
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Heat Guns"),
9046
+ 'value' => 3011
9047
+ ),array(
9048
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hoisting"),
9049
+ 'value' => 3012
9050
+ ),array(
9051
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hoisting > Air Casters"),
9052
+ 'value' => 3013
9053
+ ),array(
9054
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hoisting > Buckhoists"),
9055
+ 'value' => 3014
9056
+ ),array(
9057
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hoisting > Chainhoists"),
9058
+ 'value' => 3015
9059
+ ),array(
9060
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hoisting > Jack Lifts"),
9061
+ 'value' => 3016
9062
+ ),array(
9063
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hoisting > Pallet Jacks"),
9064
+ 'value' => 3017
9065
+ ),array(
9066
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Hoisting > Wire Hoists"),
9067
+ 'value' => 3018
9068
+ ),array(
9069
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Impact Wrenches & Drivers"),
9070
+ 'value' => 3019
9071
+ ),array(
9072
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Industrial Vibrators"),
9073
+ 'value' => 3020
9074
+ ),array(
9075
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Inspection Mirrors"),
9076
+ 'value' => 3021
9077
+ ),array(
9078
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding"),
9079
+ 'value' => 3022
9080
+ ),array(
9081
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding > Ladder Carts"),
9082
+ 'value' => 3023
9083
+ ),array(
9084
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding > Ladders"),
9085
+ 'value' => 3024
9086
+ ),array(
9087
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding > Ladders > Aluminum Ladders"),
9088
+ 'value' => 3025
9089
+ ),array(
9090
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding > Ladders > Wooden Ladders"),
9091
+ 'value' => 3026
9092
+ ),array(
9093
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding > Scaffolding"),
9094
+ 'value' => 3027
9095
+ ),array(
9096
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding > Step Stools"),
9097
+ 'value' => 3028
9098
+ ),array(
9099
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Ladders & Scaffolding > Work Platforms"),
9100
+ 'value' => 3029
9101
+ ),array(
9102
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Lathes"),
9103
+ 'value' => 3030
9104
+ ),array(
9105
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Lifting Magnets"),
9106
+ 'value' => 3031
9107
+ ),array(
9108
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Light Bulb Changers"),
9109
+ 'value' => 3032
9110
+ ),array(
9111
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Log Splitters"),
9112
+ 'value' => 3033
9113
+ ),array(
9114
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Marking Tools"),
9115
+ 'value' => 3034
9116
+ ),array(
9117
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Marking Tools > Carpenter Crayons & Pencils"),
9118
+ 'value' => 3035
9119
+ ),array(
9120
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Marking Tools > Chalk Lines"),
9121
+ 'value' => 3036
9122
+ ),array(
9123
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Marking Tools > Marking Chisels"),
9124
+ 'value' => 3037
9125
+ ),array(
9126
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Marking Tools > Marking Knives"),
9127
+ 'value' => 3038
9128
+ ),array(
9129
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools"),
9130
+ 'value' => 3039
9131
+ ),array(
9132
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Brick Tools"),
9133
+ 'value' => 3040
9134
+ ),array(
9135
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Cement Mixers"),
9136
+ 'value' => 3041
9137
+ ),array(
9138
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Construction Lines"),
9139
+ 'value' => 3042
9140
+ ),array(
9141
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Edgers"),
9142
+ 'value' => 3043
9143
+ ),array(
9144
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Floats"),
9145
+ 'value' => 3044
9146
+ ),array(
9147
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Grout Sponges"),
9148
+ 'value' => 3045
9149
+ ),array(
9150
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Masonry Jointers"),
9151
+ 'value' => 3046
9152
+ ),array(
9153
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Masonry Trowels"),
9154
+ 'value' => 3047
9155
+ ),array(
9156
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Masonry Tools > Power Trowels"),
9157
+ 'value' => 3048
9158
+ ),array(
9159
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors"),
9160
+ 'value' => 3049
9161
+ ),array(
9162
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Air Quality Meters"),
9163
+ 'value' => 3050
9164
+ ),array(
9165
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Altimeters"),
9166
+ 'value' => 3051
9167
+ ),array(
9168
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Barometers"),
9169
+ 'value' => 3052
9170
+ ),array(
9171
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Cable Testers"),
9172
+ 'value' => 3053
9173
+ ),array(
9174
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Calipers"),
9175
+ 'value' => 3054
9176
+ ),array(
9177
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Cruising Rods"),
9178
+ 'value' => 3055
9179
+ ),array(
9180
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Diagnostic Thermal Cameras"),
9181
+ 'value' => 3056
9182
+ ),array(
9183
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Distance Meters"),
9184
+ 'value' => 3057
9185
+ ),array(
9186
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Dividers"),
9187
+ 'value' => 3058
9188
+ ),array(
9189
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Flow Meters & Controllers"),
9190
+ 'value' => 3059
9191
+ ),array(
9192
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Gas Detectors"),
9193
+ 'value' => 3060
9194
+ ),array(
9195
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Gauges"),
9196
+ 'value' => 3061
9197
+ ),array(
9198
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Geiger Counters"),
9199
+ 'value' => 3062
9200
+ ),array(
9201
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Hygrometers"),
9202
+ 'value' => 3063
9203
+ ),array(
9204
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Knife Guides"),
9205
+ 'value' => 3064
9206
+ ),array(
9207
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Leak Detectors"),
9208
+ 'value' => 3065
9209
+ ),array(
9210
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Levels"),
9211
+ 'value' => 3066
9212
+ ),array(
9213
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Levels > Bubble Levels"),
9214
+ 'value' => 3067
9215
+ ),array(
9216
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Levels > Laser Levels"),
9217
+ 'value' => 3068
9218
+ ),array(
9219
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Levels > Sight Levels"),
9220
+ 'value' => 3069
9221
+ ),array(
9222
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Measuring Wheels"),
9223
+ 'value' => 3070
9224
+ ),array(
9225
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Metal & Voltage Detectors"),
9226
+ 'value' => 3071
9227
+ ),array(
9228
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Moisture Meters"),
9229
+ 'value' => 3072
9230
+ ),array(
9231
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Multimeters"),
9232
+ 'value' => 3073
9233
+ ),array(
9234
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Pipe Locators"),
9235
+ 'value' => 3074
9236
+ ),array(
9237
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Pressure Sensors & Transducers"),
9238
+ 'value' => 3075
9239
+ ),array(
9240
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Probes & Finders"),
9241
+ 'value' => 3076
9242
+ ),array(
9243
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Protractors"),
9244
+ 'value' => 3077
9245
+ ),array(
9246
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Rebar Locators"),
9247
+ 'value' => 3078
9248
+ ),array(
9249
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Rulers"),
9250
+ 'value' => 3079
9251
+ ),array(
9252
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Scales"),
9253
+ 'value' => 3080
9254
+ ),array(
9255
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Seismometer"),
9256
+ 'value' => 3081
9257
+ ),array(
9258
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Sound Meters"),
9259
+ 'value' => 3082
9260
+ ),array(
9261
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Squares"),
9262
+ 'value' => 3083
9263
+ ),array(
9264
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Straight Edges"),
9265
+ 'value' => 3084
9266
+ ),array(
9267
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Stud Sensors"),
9268
+ 'value' => 3085
9269
+ ),array(
9270
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Tape Measures"),
9271
+ 'value' => 3086
9272
+ ),array(
9273
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Theodolites"),
9274
+ 'value' => 3087
9275
+ ),array(
9276
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Thermometers"),
9277
+ 'value' => 3088
9278
+ ),array(
9279
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Thermometers > Infrared Thermometers"),
9280
+ 'value' => 3089
9281
+ ),array(
9282
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > UV Light Meters"),
9283
+ 'value' => 3090
9284
+ ),array(
9285
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Vibration Meters"),
9286
+ 'value' => 3091
9287
+ ),array(
9288
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Weather Forecasters & Stations"),
9289
+ 'value' => 3092
9290
+ ),array(
9291
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > Wire Locators"),
9292
+ 'value' => 3093
9293
+ ),array(
9294
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Measuring Tools & Sensors > pH Meters"),
9295
+ 'value' => 3094
9296
+ ),array(
9297
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Milling Machines"),
9298
+ 'value' => 3095
9299
+ ),array(
9300
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Multifunction Power Tools"),
9301
+ 'value' => 3096
9302
+ ),array(
9303
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Nail Pullers"),
9304
+ 'value' => 3097
9305
+ ),array(
9306
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Nailers & Staplers"),
9307
+ 'value' => 3098
9308
+ ),array(
9309
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Oil Filter Drains"),
9310
+ 'value' => 3099
9311
+ ),array(
9312
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Paint Tools"),
9313
+ 'value' => 3100
9314
+ ),array(
9315
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Paint Tools > Paint Edgers"),
9316
+ 'value' => 3101
9317
+ ),array(
9318
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Paint Tools > Paint Rollers"),
9319
+ 'value' => 3102
9320
+ ),array(
9321
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Paint Tools > Paint Sponges"),
9322
+ 'value' => 3103
9323
+ ),array(
9324
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Paint Tools > Paint Sprayers"),
9325
+ 'value' => 3104
9326
+ ),array(
9327
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Paint Tools > Paint Stripper"),
9328
+ 'value' => 3105
9329
+ ),array(
9330
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Paint Tools > Paint Trays"),
9331
+ 'value' => 3106
9332
+ ),array(
9333
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Pickup Tools"),
9334
+ 'value' => 3107
9335
+ ),array(
9336
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Pickup Tools > Utility Tweezers"),
9337
+ 'value' => 3108
9338
+ ),array(
9339
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Planers"),
9340
+ 'value' => 3109
9341
+ ),array(
9342
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Planes"),
9343
+ 'value' => 3110
9344
+ ),array(
9345
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Pliers"),
9346
+ 'value' => 3111
9347
+ ),array(
9348
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Plungers"),
9349
+ 'value' => 3112
9350
+ ),array(
9351
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Polishers & Buffers"),
9352
+ 'value' => 3113
9353
+ ),array(
9354
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Post Hole Diggers"),
9355
+ 'value' => 3114
9356
+ ),array(
9357
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Punches"),
9358
+ 'value' => 3115
9359
+ ),array(
9360
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Putty Knives & Scrapers"),
9361
+ 'value' => 3116
9362
+ ),array(
9363
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Reamers"),
9364
+ 'value' => 3117
9365
+ ),array(
9366
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Riveting Tools"),
9367
+ 'value' => 3118
9368
+ ),array(
9369
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Riveting Tools > Rivet Guns"),
9370
+ 'value' => 3119
9371
+ ),array(
9372
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Riveting Tools > Rivet Pliers"),
9373
+ 'value' => 3120
9374
+ ),array(
9375
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Routing Tools"),
9376
+ 'value' => 3121
9377
+ ),array(
9378
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Sandblasters"),
9379
+ 'value' => 3122
9380
+ ),array(
9381
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Sanders"),
9382
+ 'value' => 3123
9383
+ ),array(
9384
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Sanding Blocks"),
9385
+ 'value' => 3124
9386
+ ),array(
9387
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saw Horses"),
9388
+ 'value' => 3125
9389
+ ),array(
9390
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws"),
9391
+ 'value' => 3126
9392
+ ),array(
9393
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Band Saws"),
9394
+ 'value' => 3127
9395
+ ),array(
9396
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Cut-Off Saws"),
9397
+ 'value' => 3128
9398
+ ),array(
9399
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Hacksaws"),
9400
+ 'value' => 3129
9401
+ ),array(
9402
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Hand Saws"),
9403
+ 'value' => 3130
9404
+ ),array(
9405
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Handheld Circular Saws"),
9406
+ 'value' => 3131
9407
+ ),array(
9408
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Jig Saws"),
9409
+ 'value' => 3132
9410
+ ),array(
9411
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Masonry & Tile Saws"),
9412
+ 'value' => 3133
9413
+ ),array(
9414
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Miter Saws"),
9415
+ 'value' => 3134
9416
+ ),array(
9417
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Reciprocating Saws"),
9418
+ 'value' => 3135
9419
+ ),array(
9420
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Scroll Saws"),
9421
+ 'value' => 3136
9422
+ ),array(
9423
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Saws > Table Saws"),
9424
+ 'value' => 3137
9425
+ ),array(
9426
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Screwdrivers"),
9427
+ 'value' => 3138
9428
+ ),array(
9429
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Screwdrivers > Manual Screwdrivers"),
9430
+ 'value' => 3139
9431
+ ),array(
9432
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Screwdrivers > Power Screwdrivers"),
9433
+ 'value' => 3140
9434
+ ),array(
9435
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Shapers"),
9436
+ 'value' => 3141
9437
+ ),array(
9438
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Sharpeners"),
9439
+ 'value' => 3142
9440
+ ),array(
9441
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Sharpeners > Chainsaw Sharpeners"),
9442
+ 'value' => 3143
9443
+ ),array(
9444
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Sharpeners > Sharpening Stones"),
9445
+ 'value' => 3144
9446
+ ),array(
9447
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Socket Drivers"),
9448
+ 'value' => 3145
9449
+ ),array(
9450
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Soldering Irons"),
9451
+ 'value' => 3146
9452
+ ),array(
9453
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tap Reseaters"),
9454
+ 'value' => 3147
9455
+ ),array(
9456
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Threading Machines"),
9457
+ 'value' => 3148
9458
+ ),array(
9459
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Clamps"),
9460
+ 'value' => 3149
9461
+ ),array(
9462
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Clamps > Vise Clamps"),
9463
+ 'value' => 3150
9464
+ ),array(
9465
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Files"),
9466
+ 'value' => 3151
9467
+ ),array(
9468
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Keys"),
9469
+ 'value' => 3152
9470
+ ),array(
9471
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Keys > Manhole Keys"),
9472
+ 'value' => 3153
9473
+ ),array(
9474
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Keys > Radiator Keys"),
9475
+ 'value' => 3154
9476
+ ),array(
9477
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Keys > Stopcock Keys"),
9478
+ 'value' => 3155
9479
+ ),array(
9480
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Knives"),
9481
+ 'value' => 3156
9482
+ ),array(
9483
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Knives > Sheetrock Knives"),
9484
+ 'value' => 3157
9485
+ ),array(
9486
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Sets"),
9487
+ 'value' => 3158
9488
+ ),array(
9489
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Sets > Hand Tool Sets"),
9490
+ 'value' => 3159
9491
+ ),array(
9492
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Tool Sets > Power Tool Combo Sets"),
9493
+ 'value' => 3160
9494
+ ),array(
9495
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Welding Tools"),
9496
+ 'value' => 3161
9497
+ ),array(
9498
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wire & Cable Hand Tools"),
9499
+ 'value' => 3162
9500
+ ),array(
9501
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wire & Cable Hand Tools > Cable Slitters"),
9502
+ 'value' => 3163
9503
+ ),array(
9504
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wire & Cable Hand Tools > Snippers"),
9505
+ 'value' => 3164
9506
+ ),array(
9507
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wire & Cable Hand Tools > Wire Crimpers"),
9508
+ 'value' => 3165
9509
+ ),array(
9510
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wire & Cable Hand Tools > Wire Cutters"),
9511
+ 'value' => 3166
9512
+ ),array(
9513
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wire & Cable Hand Tools > Wire Strippers"),
9514
+ 'value' => 3167
9515
+ ),array(
9516
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Work Lights"),
9517
+ 'value' => 3168
9518
+ ),array(
9519
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wrenches"),
9520
+ 'value' => 3169
9521
+ ),array(
9522
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wrenches > Hex Keys"),
9523
+ 'value' => 3170
9524
+ ),array(
9525
+ 'label' => Mage::helper('richsnippet')->__("Hardware > Tools > Wrenches > Socket Wrenches"),
9526
+ 'value' => 3171
9527
+ ),array(
9528
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty"),
9529
+ 'value' => 3172
9530
+ ),array(
9531
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care"),
9532
+ 'value' => 3173
9533
+ ),array(
9534
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Acupuncture"),
9535
+ 'value' => 3174
9536
+ ),array(
9537
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Acupuncture > Acupuncture Models"),
9538
+ 'value' => 3175
9539
+ ),array(
9540
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Acupuncture > Acupuncture Needles"),
9541
+ 'value' => 3176
9542
+ ),array(
9543
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Arthritis Care"),
9544
+ 'value' => 3177
9545
+ ),array(
9546
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Bed Pans"),
9547
+ 'value' => 3178
9548
+ ),array(
9549
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories"),
9550
+ 'value' => 3179
9551
+ ),array(
9552
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories"),
9553
+ 'value' => 3180
9554
+ ),array(
9555
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Blood Glucose Control Solution"),
9556
+ 'value' => 3181
9557
+ ),array(
9558
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Blood Glucose Test Strips"),
9559
+ 'value' => 3182
9560
+ ),array(
9561
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Glucose Meter Accessories > Lancing Devices"),
9562
+ 'value' => 3183
9563
+ ),array(
9564
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Pressure Monitor Accessories"),
9565
+ 'value' => 3184
9566
+ ),array(
9567
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Blood Pressure Monitor Accessories > Blood Pressure Monitor Cuffs"),
9568
+ 'value' => 3185
9569
+ ),array(
9570
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Body Weight Scale Accessories"),
9571
+ 'value' => 3186
9572
+ ),array(
9573
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Fertility Monitor Accessories"),
9574
+ 'value' => 3187
9575
+ ),array(
9576
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitor Accessories > Heart Rate Monitor Accessories"),
9577
+ 'value' => 3188
9578
+ ),array(
9579
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors"),
9580
+ 'value' => 3189
9581
+ ),array(
9582
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Blood Glucose Meters"),
9583
+ 'value' => 3190
9584
+ ),array(
9585
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Blood Pressure Monitors"),
9586
+ 'value' => 3191
9587
+ ),array(
9588
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Body Fat Analyzers"),
9589
+ 'value' => 3192
9590
+ ),array(
9591
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Body Weight Scales"),
9592
+ 'value' => 3193
9593
+ ),array(
9594
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Breathalyzers"),
9595
+ 'value' => 3194
9596
+ ),array(
9597
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Cholesterol Analyzers"),
9598
+ 'value' => 3195
9599
+ ),array(
9600
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Fertility Monitors"),
9601
+ 'value' => 3196
9602
+ ),array(
9603
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Heart Rate Monitors"),
9604
+ 'value' => 3197
9605
+ ),array(
9606
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Medical Thermometers"),
9607
+ 'value' => 3198
9608
+ ),array(
9609
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Pedometers"),
9610
+ 'value' => 3199
9611
+ ),array(
9612
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Prenatal Heart Monitors"),
9613
+ 'value' => 3200
9614
+ ),array(
9615
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Biometric Monitors > Pulse Oximeters"),
9616
+ 'value' => 3201
9617
+ ),array(
9618
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Blood Typing Test Kits"),
9619
+ 'value' => 3202
9620
+ ),array(
9621
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > CPAP Equipment"),
9622
+ 'value' => 3203
9623
+ ),array(
9624
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > CPAP Equipment > CPAP Machines"),
9625
+ 'value' => 3204
9626
+ ),array(
9627
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > CPAP Equipment > CPAP Masks"),
9628
+ 'value' => 3205
9629
+ ),array(
9630
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Contraceptive Cases"),
9631
+ 'value' => 3206
9632
+ ),array(
9633
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Contraceptives"),
9634
+ 'value' => 3207
9635
+ ),array(
9636
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Contraceptives > Condoms"),
9637
+ 'value' => 3208
9638
+ ),array(
9639
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Contraceptives > Spermicides"),
9640
+ 'value' => 3209
9641
+ ),array(
9642
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Diabetes Care"),
9643
+ 'value' => 3210
9644
+ ),array(
9645
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Drug Tests"),
9646
+ 'value' => 3211
9647
+ ),array(
9648
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid"),
9649
+ 'value' => 3212
9650
+ ),array(
9651
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Antiseptics & Cleaning Supplies"),
9652
+ 'value' => 3213
9653
+ ),array(
9654
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Cast & Bandage Protectors"),
9655
+ 'value' => 3214
9656
+ ),array(
9657
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Eye Wash Supplies"),
9658
+ 'value' => 3215
9659
+ ),array(
9660
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > First Aid Kits"),
9661
+ 'value' => 3216
9662
+ ),array(
9663
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Heat Rubs"),
9664
+ 'value' => 3217
9665
+ ),array(
9666
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Hot & Cold Therapies"),
9667
+ 'value' => 3218
9668
+ ),array(
9669
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Heating Pads"),
9670
+ 'value' => 3219
9671
+ ),array(
9672
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Hot & Cold Therapies > Ice Packs"),
9673
+ 'value' => 3220
9674
+ ),array(
9675
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Medical Tape & Bandages"),
9676
+ 'value' => 3221
9677
+ ),array(
9678
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > First Aid > Rash & Anti-Itch Treatments"),
9679
+ 'value' => 3222
9680
+ ),array(
9681
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition"),
9682
+ 'value' => 3223
9683
+ ),array(
9684
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Diet Pills"),
9685
+ 'value' => 3224
9686
+ ),array(
9687
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Bars"),
9688
+ 'value' => 3225
9689
+ ),array(
9690
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Drinks & Shakes"),
9691
+ 'value' => 3226
9692
+ ),array(
9693
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Nutrition Gels & Chews"),
9694
+ 'value' => 3227
9695
+ ),array(
9696
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Nutritional Food Purées"),
9697
+ 'value' => 3228
9698
+ ),array(
9699
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Protein Powder"),
9700
+ 'value' => 3229
9701
+ ),array(
9702
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Traditional Chinese Tonics"),
9703
+ 'value' => 3230
9704
+ ),array(
9705
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Tube Feeding Supplements"),
9706
+ 'value' => 3231
9707
+ ),array(
9708
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Fitness & Nutrition > Vitamins & Supplements"),
9709
+ 'value' => 3232
9710
+ ),array(
9711
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > HIV Tests"),
9712
+ 'value' => 3233
9713
+ ),array(
9714
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Hearing Aids"),
9715
+ 'value' => 3234
9716
+ ),array(
9717
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Hearing Enhancers"),
9718
+ 'value' => 3235
9719
+ ),array(
9720
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Incontinence Aids"),
9721
+ 'value' => 3236
9722
+ ),array(
9723
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medical Alarm Systems"),
9724
+ 'value' => 3237
9725
+ ),array(
9726
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medical Identification Tags & Jewelry"),
9727
+ 'value' => 3238
9728
+ ),array(
9729
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medicine & Drugs"),
9730
+ 'value' => 3239
9731
+ ),array(
9732
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medicine & Drugs > OTC Drugs"),
9733
+ 'value' => 3240
9734
+ ),array(
9735
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medicine & Drugs > OTC Drugs > Allergies & Sinus"),
9736
+ 'value' => 3241
9737
+ ),array(
9738
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medicine & Drugs > OTC Drugs > Cough, Cold & Flu"),
9739
+ 'value' => 3242
9740
+ ),array(
9741
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medicine & Drugs > OTC Drugs > Gastrointestinal Treatments"),
9742
+ 'value' => 3243
9743
+ ),array(
9744
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medicine & Drugs > OTC Drugs > Pain Relievers"),
9745
+ 'value' => 3244
9746
+ ),array(
9747
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Medicine & Drugs > OTC Drugs > Sleeping Medication"),
9748
+ 'value' => 3245
9749
+ ),array(
9750
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility"),
9751
+ 'value' => 3246
9752
+ ),array(
9753
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment"),
9754
+ 'value' => 3247
9755
+ ),array(
9756
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Mobility Scooters"),
9757
+ 'value' => 3248
9758
+ ),array(
9759
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Stair Lifts"),
9760
+ 'value' => 3249
9761
+ ),array(
9762
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Wheelchairs"),
9763
+ 'value' => 3250
9764
+ ),array(
9765
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Wheelchairs > Manual Wheelchairs"),
9766
+ 'value' => 3251
9767
+ ),array(
9768
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment > Wheelchairs > Powered Wheelchairs"),
9769
+ 'value' => 3252
9770
+ ),array(
9771
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Equipment Accessories"),
9772
+ 'value' => 3253
9773
+ ),array(
9774
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Furniture & Fixtures"),
9775
+ 'value' => 3254
9776
+ ),array(
9777
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Accessibility Furniture & Fixtures > Shower Benches & Seats"),
9778
+ 'value' => 3255
9779
+ ),array(
9780
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Walking Aid Accessories"),
9781
+ 'value' => 3256
9782
+ ),array(
9783
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids"),
9784
+ 'value' => 3257
9785
+ ),array(
9786
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Canes & Walking Sticks"),
9787
+ 'value' => 3258
9788
+ ),array(
9789
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Crutches"),
9790
+ 'value' => 3259
9791
+ ),array(
9792
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Mobility & Accessibility > Walking Aids > Walkers"),
9793
+ 'value' => 3260
9794
+ ),array(
9795
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Physical Therapy Equipment"),
9796
+ 'value' => 3261
9797
+ ),array(
9798
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Physical Therapy Equipment > Hand Exercisers"),
9799
+ 'value' => 3262
9800
+ ),array(
9801
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Pregnancy Tests"),
9802
+ 'value' => 3263
9803
+ ),array(
9804
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Respiratory Care"),
9805
+ 'value' => 3264
9806
+ ),array(
9807
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Respiratory Care > Nebulizers"),
9808
+ 'value' => 3265
9809
+ ),array(
9810
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Smoking Cessation"),
9811
+ 'value' => 3266
9812
+ ),array(
9813
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Supports & Braces"),
9814
+ 'value' => 3267
9815
+ ),array(
9816
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Health Care > Surgical Lubricants"),
9817
+ 'value' => 3268
9818
+ ),array(
9819
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Jewelry Cleaning & Care"),
9820
+ 'value' => 3269
9821
+ ),array(
9822
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Jewelry Cleaning & Care > Jewelry Cleaners"),
9823
+ 'value' => 3270
9824
+ ),array(
9825
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Jewelry Cleaning & Care > Jewelry Holders"),
9826
+ 'value' => 3271
9827
+ ),array(
9828
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care"),
9829
+ 'value' => 3272
9830
+ ),array(
9831
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Back Care"),
9832
+ 'value' => 3273
9833
+ ),array(
9834
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Back Care > Back & Lumbar Support Cushions"),
9835
+ 'value' => 3274
9836
+ ),array(
9837
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics"),
9838
+ 'value' => 3275
9839
+ ),array(
9840
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body"),
9841
+ 'value' => 3276
9842
+ ),array(
9843
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bar Soap"),
9844
+ 'value' => 3277
9845
+ ),array(
9846
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Additives"),
9847
+ 'value' => 3278
9848
+ ),array(
9849
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Brushes"),
9850
+ 'value' => 3279
9851
+ ),array(
9852
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Bath Sponges & Loofahs"),
9853
+ 'value' => 3280
9854
+ ),array(
9855
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Body Wash"),
9856
+ 'value' => 3281
9857
+ ),array(
9858
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Hand Sanitizers & Wipes"),
9859
+ 'value' => 3282
9860
+ ),array(
9861
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Liquid Hand Soap"),
9862
+ 'value' => 3283
9863
+ ),array(
9864
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Powdered Hand Soap"),
9865
+ 'value' => 3284
9866
+ ),array(
9867
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Shower Caps"),
9868
+ 'value' => 3285
9869
+ ),array(
9870
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body > Wet Wipes"),
9871
+ 'value' => 3286
9872
+ ),array(
9873
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Bath & Body Gift Sets"),
9874
+ 'value' => 3287
9875
+ ),array(
9876
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tool Cleaners"),
9877
+ 'value' => 3288
9878
+ ),array(
9879
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools"),
9880
+ 'value' => 3289
9881
+ ),array(
9882
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools"),
9883
+ 'value' => 3290
9884
+ ),array(
9885
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Double Eyelid Glue & Tape"),
9886
+ 'value' => 3291
9887
+ ),array(
9888
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyebrow Stencils"),
9889
+ 'value' => 3292
9890
+ ),array(
9891
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyelash Curler Refills"),
9892
+ 'value' => 3293
9893
+ ),array(
9894
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Eyelash Curlers"),
9895
+ 'value' => 3294
9896
+ ),array(
9897
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Face Mirrors"),
9898
+ 'value' => 3295
9899
+ ),array(
9900
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Facial Blotting Paper"),
9901
+ 'value' => 3296
9902
+ ),array(
9903
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Adhesive"),
9904
+ 'value' => 3297
9905
+ ),array(
9906
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > False Eyelash Applicators"),
9907
+ 'value' => 3298
9908
+ ),array(
9909
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Makeup Brushes"),
9910
+ 'value' => 3299
9911
+ ),array(
9912
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Makeup Tools > Makeup Sponges"),
9913
+ 'value' => 3300
9914
+ ),array(
9915
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools"),
9916
+ 'value' => 3301
9917
+ ),array(
9918
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Cuticle Pushers"),
9919
+ 'value' => 3302
9920
+ ),array(
9921
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Cuticle Scissors"),
9922
+ 'value' => 3303
9923
+ ),array(
9924
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Manicure Tool Sets"),
9925
+ 'value' => 3304
9926
+ ),array(
9927
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Buffers"),
9928
+ 'value' => 3305
9929
+ ),array(
9930
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Clippers"),
9931
+ 'value' => 3306
9932
+ ),array(
9933
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Drills"),
9934
+ 'value' => 3307
9935
+ ),array(
9936
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Dryers"),
9937
+ 'value' => 3308
9938
+ ),array(
9939
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Nail Files & Emery Boards"),
9940
+ 'value' => 3309
9941
+ ),array(
9942
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Nail Tools > Pedicure Toe Seperators"),
9943
+ 'value' => 3310
9944
+ ),array(
9945
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools"),
9946
+ 'value' => 3311
9947
+ ),array(
9948
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Facial Saunas"),
9949
+ 'value' => 3312
9950
+ ),array(
9951
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Foot Files"),
9952
+ 'value' => 3313
9953
+ ),array(
9954
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Pumice Stones"),
9955
+ 'value' => 3314
9956
+ ),array(
9957
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Care Extractors"),
9958
+ 'value' => 3315
9959
+ ),array(
9960
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Care Rollers"),
9961
+ 'value' => 3316
9962
+ ),array(
9963
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Skin Care Tools > Skin Cleansing Brushes & Systems"),
9964
+ 'value' => 3317
9965
+ ),array(
9966
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Cosmetic Tools > Tweezers"),
9967
+ 'value' => 3318
9968
+ ),array(
9969
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup"),
9970
+ 'value' => 3319
9971
+ ),array(
9972
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup"),
9973
+ 'value' => 3320
9974
+ ),array(
9975
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup > Body & Hair Glitter"),
9976
+ 'value' => 3321
9977
+ ),array(
9978
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Body Makeup > Body Paint & Foundation"),
9979
+ 'value' => 3322
9980
+ ),array(
9981
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Costume & Stage Makeup"),
9982
+ 'value' => 3323
9983
+ ),array(
9984
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup"),
9985
+ 'value' => 3324
9986
+ ),array(
9987
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eye Shadow & Primer"),
9988
+ 'value' => 3325
9989
+ ),array(
9990
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eyebrow Enhancers"),
9991
+ 'value' => 3326
9992
+ ),array(
9993
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eyelash Growth Treatments"),
9994
+ 'value' => 3327
9995
+ ),array(
9996
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Eyeliner"),
9997
+ 'value' => 3328
9998
+ ),array(
9999
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > False Eyelashes"),
10000
+ 'value' => 3329
10001
+ ),array(
10002
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Eye Makeup > Mascara"),
10003
+ 'value' => 3330
10004
+ ),array(
10005
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup"),
10006
+ 'value' => 3331
10007
+ ),array(
10008
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Blushes & Bronzers"),
10009
+ 'value' => 3332
10010
+ ),array(
10011
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Face Powder"),
10012
+ 'value' => 3333
10013
+ ),array(
10014
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Foundations & Concealers"),
10015
+ 'value' => 3334
10016
+ ),array(
10017
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Face Makeup > Highlighters & Luminizers"),
10018
+ 'value' => 3335
10019
+ ),array(
10020
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup"),
10021
+ 'value' => 3336
10022
+ ),array(
10023
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip & Cheek Stains"),
10024
+ 'value' => 3337
10025
+ ),array(
10026
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Gloss"),
10027
+ 'value' => 3338
10028
+ ),array(
10029
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lip Liner"),
10030
+ 'value' => 3339
10031
+ ),array(
10032
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Lip Makeup > Lipstick"),
10033
+ 'value' => 3340
10034
+ ),array(
10035
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Makeup Finishing Sprays"),
10036
+ 'value' => 3341
10037
+ ),array(
10038
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Makeup Sets"),
10039
+ 'value' => 3342
10040
+ ),array(
10041
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Makeup > Temporary Tattoos"),
10042
+ 'value' => 3343
10043
+ ),array(
10044
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care"),
10045
+ 'value' => 3344
10046
+ ),array(
10047
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care > Cuticle Cream & Oil"),
10048
+ 'value' => 3345
10049
+ ),array(
10050
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care > False Nails"),
10051
+ 'value' => 3346
10052
+ ),array(
10053
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Art Kits & Accessories"),
10054
+ 'value' => 3347
10055
+ ),array(
10056
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Glue"),
10057
+ 'value' => 3348
10058
+ ),array(
10059
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Removers"),
10060
+ 'value' => 3349
10061
+ ),array(
10062
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polish Thinners"),
10063
+ 'value' => 3350
10064
+ ),array(
10065
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Nail Care > Nail Polishes"),
10066
+ 'value' => 3351
10067
+ ),array(
10068
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Perfume & Cologne"),
10069
+ 'value' => 3352
10070
+ ),array(
10071
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care"),
10072
+ 'value' => 3353
10073
+ ),array(
10074
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Acne Treatments & Kits"),
10075
+ 'value' => 3354
10076
+ ),array(
10077
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Anti-Aging Skin Care Kits"),
10078
+ 'value' => 3355
10079
+ ),array(
10080
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Body Oil"),
10081
+ 'value' => 3356
10082
+ ),array(
10083
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Body Powder"),
10084
+ 'value' => 3357
10085
+ ),array(
10086
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Compressed Skin Care Mask Sheets"),
10087
+ 'value' => 3358
10088
+ ),array(
10089
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Cleansers"),
10090
+ 'value' => 3359
10091
+ ),array(
10092
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Cleansing Kits"),
10093
+ 'value' => 3360
10094
+ ),array(
10095
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Facial Pore Strips"),
10096
+ 'value' => 3361
10097
+ ),array(
10098
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Lip Balms & Treatments"),
10099
+ 'value' => 3362
10100
+ ),array(
10101
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Lotion & Moisturizer"),
10102
+ 'value' => 3363
10103
+ ),array(
10104
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Lotion & Moisturizer > Body Lotion"),
10105
+ 'value' => 3364
10106
+ ),array(
10107
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Lotion & Moisturizer > Face Lotion"),
10108
+ 'value' => 3365
10109
+ ),array(
10110
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Lotion & Moisturizer > Foot Lotion"),
10111
+ 'value' => 3366
10112
+ ),array(
10113
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Lotion & Moisturizer > Hand Lotion"),
10114
+ 'value' => 3367
10115
+ ),array(
10116
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Makeup Removers"),
10117
+ 'value' => 3368
10118
+ ),array(
10119
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Petroleum Jelly"),
10120
+ 'value' => 3369
10121
+ ),array(
10122
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Skin Care Masks & Peels"),
10123
+ 'value' => 3370
10124
+ ),array(
10125
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Skin Insect Repellent"),
10126
+ 'value' => 3371
10127
+ ),array(
10128
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Sunscreen"),
10129
+ 'value' => 3372
10130
+ ),array(
10131
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products"),
10132
+ 'value' => 3373
10133
+ ),array(
10134
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products > Self Tanner"),
10135
+ 'value' => 3374
10136
+ ),array(
10137
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products > Self Tanner Applicators & Removers"),
10138
+ 'value' => 3375
10139
+ ),array(
10140
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Tanning Products > Tanning Oil & Lotion"),
10141
+ 'value' => 3376
10142
+ ),array(
10143
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cosmetics > Skin Care > Toners & Astringents"),
10144
+ 'value' => 3377
10145
+ ),array(
10146
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cotton Balls"),
10147
+ 'value' => 3378
10148
+ ),array(
10149
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Cotton Swabs"),
10150
+ 'value' => 3379
10151
+ ),array(
10152
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Deodorant & Anti-Perspirant"),
10153
+ 'value' => 3380
10154
+ ),array(
10155
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care"),
10156
+ 'value' => 3381
10157
+ ),array(
10158
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care > Ear Candles"),
10159
+ 'value' => 3382
10160
+ ),array(
10161
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care > Ear Drops"),
10162
+ 'value' => 3383
10163
+ ),array(
10164
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care > Ear Dryers"),
10165
+ 'value' => 3384
10166
+ ),array(
10167
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care > Ear Syringes"),
10168
+ 'value' => 3385
10169
+ ),array(
10170
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care > Ear Wax Removal Kits"),
10171
+ 'value' => 3386
10172
+ ),array(
10173
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care > Earplug Dispensers"),
10174
+ 'value' => 3387
10175
+ ),array(
10176
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Ear Care > Earplugs"),
10177
+ 'value' => 3388
10178
+ ),array(
10179
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Enema Kits & Supplies"),
10180
+ 'value' => 3389
10181
+ ),array(
10182
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Feminine Sanitary Supplies"),
10183
+ 'value' => 3390
10184
+ ),array(
10185
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Deodorant"),
10186
+ 'value' => 3391
10187
+ ),array(
10188
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Douches & Washes"),
10189
+ 'value' => 3392
10190
+ ),array(
10191
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Feminine Sanitary Supplies > Feminine Pads & Protectors"),
10192
+ 'value' => 3393
10193
+ ),array(
10194
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Feminine Sanitary Supplies > Tampons"),
10195
+ 'value' => 3394
10196
+ ),array(
10197
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Foot Care"),
10198
+ 'value' => 3395
10199
+ ),array(
10200
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Foot Care > Antifungal Treatments"),
10201
+ 'value' => 3396
10202
+ ),array(
10203
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Foot Care > Bunion Care"),
10204
+ 'value' => 3397
10205
+ ),array(
10206
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Foot Care > Corn & Callus Care"),
10207
+ 'value' => 3398
10208
+ ),array(
10209
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Foot Care > Foot Odor Removers"),
10210
+ 'value' => 3399
10211
+ ),array(
10212
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Foot Care > Insoles & Inserts"),
10213
+ 'value' => 3400
10214
+ ),array(
10215
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Foot Care > Toe Spacers"),
10216
+ 'value' => 3401
10217
+ ),array(
10218
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care"),
10219
+ 'value' => 3402
10220
+ ),array(
10221
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Color"),
10222
+ 'value' => 3403
10223
+ ),array(
10224
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Color Removers"),
10225
+ 'value' => 3404
10226
+ ),array(
10227
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Coloring Accessories"),
10228
+ 'value' => 3405
10229
+ ),array(
10230
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Loss Concealers"),
10231
+ 'value' => 3406
10232
+ ),array(
10233
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Loss Treatments"),
10234
+ 'value' => 3407
10235
+ ),array(
10236
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Permanents & Straighteners"),
10237
+ 'value' => 3408
10238
+ ),array(
10239
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Shears"),
10240
+ 'value' => 3409
10241
+ ),array(
10242
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Steamers & Heat Caps"),
10243
+ 'value' => 3410
10244
+ ),array(
10245
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Products"),
10246
+ 'value' => 3411
10247
+ ),array(
10248
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories"),
10249
+ 'value' => 3412
10250
+ ),array(
10251
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Curler Clips & Pins"),
10252
+ 'value' => 3413
10253
+ ),array(
10254
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Dryer Accessories"),
10255
+ 'value' => 3414
10256
+ ),array(
10257
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tool Accessories > Hair Iron Accessories"),
10258
+ 'value' => 3415
10259
+ ),array(
10260
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tools"),
10261
+ 'value' => 3416
10262
+ ),array(
10263
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Combs & Brushes"),
10264
+ 'value' => 3417
10265
+ ),array(
10266
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Curling Irons"),
10267
+ 'value' => 3418
10268
+ ),array(
10269
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Curlers"),
10270
+ 'value' => 3419
10271
+ ),array(
10272
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Dryers"),
10273
+ 'value' => 3420
10274
+ ),array(
10275
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Hair Styling Tools > Hair Straighteners"),
10276
+ 'value' => 3421
10277
+ ),array(
10278
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Hair Care > Shampoo & Conditioner"),
10279
+ 'value' => 3422
10280
+ ),array(
10281
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Massage & Relaxation"),
10282
+ 'value' => 3423
10283
+ ),array(
10284
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Massage & Relaxation > Massage Chairs"),
10285
+ 'value' => 3424
10286
+ ),array(
10287
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Massage & Relaxation > Massage Oil"),
10288
+ 'value' => 3425
10289
+ ),array(
10290
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Massage & Relaxation > Massage Tables"),
10291
+ 'value' => 3426
10292
+ ),array(
10293
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Massage & Relaxation > Massagers"),
10294
+ 'value' => 3427
10295
+ ),array(
10296
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care"),
10297
+ 'value' => 3428
10298
+ ),array(
10299
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Breath Spray"),
10300
+ 'value' => 3429
10301
+ ),array(
10302
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Dental Floss"),
10303
+ 'value' => 3430
10304
+ ),array(
10305
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Dental Water Jet Replacement Tips"),
10306
+ 'value' => 3431
10307
+ ),array(
10308
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Dental Water Jets"),
10309
+ 'value' => 3432
10310
+ ),array(
10311
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Denture Adhesives"),
10312
+ 'value' => 3433
10313
+ ),array(
10314
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Denture Cleaners"),
10315
+ 'value' => 3434
10316
+ ),array(
10317
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Dentures"),
10318
+ 'value' => 3435
10319
+ ),array(
10320
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Gum Stimulators"),
10321
+ 'value' => 3436
10322
+ ),array(
10323
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Mouthguards"),
10324
+ 'value' => 3437
10325
+ ),array(
10326
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Mouthwash"),
10327
+ 'value' => 3438
10328
+ ),array(
10329
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Oral Pain Relievers"),
10330
+ 'value' => 3439
10331
+ ),array(
10332
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Power Flossers"),
10333
+ 'value' => 3440
10334
+ ),array(
10335
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Teeth Whitening"),
10336
+ 'value' => 3441
10337
+ ),array(
10338
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Tongue Scrapers"),
10339
+ 'value' => 3442
10340
+ ),array(
10341
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories"),
10342
+ 'value' => 3443
10343
+ ),array(
10344
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Covers"),
10345
+ 'value' => 3444
10346
+ ),array(
10347
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Replacement Heads"),
10348
+ 'value' => 3445
10349
+ ),array(
10350
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothbrush Accessories > Toothbrush Sanitizers"),
10351
+ 'value' => 3446
10352
+ ),array(
10353
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothbrushes"),
10354
+ 'value' => 3447
10355
+ ),array(
10356
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothpaste"),
10357
+ 'value' => 3448
10358
+ ),array(
10359
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothpaste Squeezers & Dispensers"),
10360
+ 'value' => 3449
10361
+ ),array(
10362
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Oral Care > Toothpicks"),
10363
+ 'value' => 3450
10364
+ ),array(
10365
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Personal Lubricants"),
10366
+ 'value' => 3451
10367
+ ),array(
10368
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming"),
10369
+ 'value' => 3452
10370
+ ),array(
10371
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Aftershave"),
10372
+ 'value' => 3453
10373
+ ),array(
10374
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Electric Razor Accessories"),
10375
+ 'value' => 3454
10376
+ ),array(
10377
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Electric Razors"),
10378
+ 'value' => 3455
10379
+ ),array(
10380
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Clipper & Trimmer Accessories"),
10381
+ 'value' => 3456
10382
+ ),array(
10383
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Clippers & Trimmers"),
10384
+ 'value' => 3457
10385
+ ),array(
10386
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal"),
10387
+ 'value' => 3458
10388
+ ),array(
10389
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Depilatories"),
10390
+ 'value' => 3459
10391
+ ),array(
10392
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Electrolysis Devices"),
10393
+ 'value' => 3460
10394
+ ),array(
10395
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Epilators"),
10396
+ 'value' => 3461
10397
+ ),array(
10398
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Laser Hair Removal Devices"),
10399
+ 'value' => 3462
10400
+ ),array(
10401
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Hair Removal > Waxing Kits"),
10402
+ 'value' => 3463
10403
+ ),array(
10404
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Razors & Razor Blades"),
10405
+ 'value' => 3464
10406
+ ),array(
10407
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Shaving Brushes"),
10408
+ 'value' => 3465
10409
+ ),array(
10410
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Shaving Cream"),
10411
+ 'value' => 3466
10412
+ ),array(
10413
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Shaving Kits"),
10414
+ 'value' => 3467
10415
+ ),array(
10416
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Shaving & Grooming > Styptic Pencils"),
10417
+ 'value' => 3468
10418
+ ),array(
10419
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Sleeping Aids"),
10420
+ 'value' => 3469
10421
+ ),array(
10422
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Sleeping Aids > Sleep Masks"),
10423
+ 'value' => 3470
10424
+ ),array(
10425
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Sleeping Aids > Snoring & Sleep Apnea Aids"),
10426
+ 'value' => 3471
10427
+ ),array(
10428
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Sleeping Aids > Travel Pillows"),
10429
+ 'value' => 3472
10430
+ ),array(
10431
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Sleeping Aids > White Noise Machines"),
10432
+ 'value' => 3473
10433
+ ),array(
10434
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Spray Tanning Tents"),
10435
+ 'value' => 3474
10436
+ ),array(
10437
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Tanning Beds"),
10438
+ 'value' => 3475
10439
+ ),array(
10440
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care"),
10441
+ 'value' => 3476
10442
+ ),array(
10443
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Contact Lens Care"),
10444
+ 'value' => 3477
10445
+ ),array(
10446
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Care Kits"),
10447
+ 'value' => 3478
10448
+ ),array(
10449
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Cases"),
10450
+ 'value' => 3479
10451
+ ),array(
10452
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Contact Lens Care > Contact Lens Solution"),
10453
+ 'value' => 3480
10454
+ ),array(
10455
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Contact Lenses"),
10456
+ 'value' => 3481
10457
+ ),array(
10458
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Eye Drops & Lubricants"),
10459
+ 'value' => 3482
10460
+ ),array(
10461
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Eyeglass Accessories"),
10462
+ 'value' => 3483
10463
+ ),array(
10464
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Eyeglass Accessories > Eyeglass Cases & Holders"),
10465
+ 'value' => 3484
10466
+ ),array(
10467
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Eyeglass Lenses"),
10468
+ 'value' => 3485
10469
+ ),array(
10470
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Eyeglasses"),
10471
+ 'value' => 3486
10472
+ ),array(
10473
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Vision Care > Sunglass Lenses"),
10474
+ 'value' => 3487
10475
+ ),array(
10476
+ 'label' => Mage::helper('richsnippet')->__("Health & Beauty > Personal Care > Wart Removers"),
10477
+ 'value' => 3488
10478
+ ),array(
10479
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden"),
10480
+ 'value' => 3489
10481
+ ),array(
10482
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories"),
10483
+ 'value' => 3490
10484
+ ),array(
10485
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Bath Caddies"),
10486
+ 'value' => 3491
10487
+ ),array(
10488
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Bath Mats & Rugs"),
10489
+ 'value' => 3492
10490
+ ),array(
10491
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Bath Pillows"),
10492
+ 'value' => 3493
10493
+ ),array(
10494
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Bathroom Accessory Mounts"),
10495
+ 'value' => 3494
10496
+ ),array(
10497
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Bathroom Accessory Sets"),
10498
+ 'value' => 3495
10499
+ ),array(
10500
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Facial Tissue Holders"),
10501
+ 'value' => 3496
10502
+ ),array(
10503
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Hand Dryer Accessories"),
10504
+ 'value' => 3497
10505
+ ),array(
10506
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Hand Dryers"),
10507
+ 'value' => 3498
10508
+ ),array(
10509
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Medicine Cabinets"),
10510
+ 'value' => 3499
10511
+ ),array(
10512
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Robe Hooks"),
10513
+ 'value' => 3500
10514
+ ),array(
10515
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Shower Curtain Rings"),
10516
+ 'value' => 3501
10517
+ ),array(
10518
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Shower Curtains"),
10519
+ 'value' => 3502
10520
+ ),array(
10521
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Soap & Lotion Dispensers"),
10522
+ 'value' => 3503
10523
+ ),array(
10524
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Soap Dishes & Holders"),
10525
+ 'value' => 3504
10526
+ ),array(
10527
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Toilet Brush Replacement Heads"),
10528
+ 'value' => 3505
10529
+ ),array(
10530
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Toilet Brushes"),
10531
+ 'value' => 3506
10532
+ ),array(
10533
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Toilet Paper Holders"),
10534
+ 'value' => 3507
10535
+ ),array(
10536
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Toothbrush Holders"),
10537
+ 'value' => 3508
10538
+ ),array(
10539
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Bathroom Accessories > Towel Racks & Holders"),
10540
+ 'value' => 3509
10541
+ ),array(
10542
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor"),
10543
+ 'value' => 3510
10544
+ ),array(
10545
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Address Signs"),
10546
+ 'value' => 3511
10547
+ ),array(
10548
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Artificial Flora"),
10549
+ 'value' => 3512
10550
+ ),array(
10551
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Artificial Flora > Artificial Flowers"),
10552
+ 'value' => 3513
10553
+ ),array(
10554
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Artificial Flora > Artificial Plants"),
10555
+ 'value' => 3514
10556
+ ),array(
10557
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Artificial Flora > Artificial Topiaries"),
10558
+ 'value' => 3515
10559
+ ),array(
10560
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Artificial Flora > Artificial Trees"),
10561
+ 'value' => 3516
10562
+ ),array(
10563
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Artificial Food"),
10564
+ 'value' => 3517
10565
+ ),array(
10566
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Backrest Pillows"),
10567
+ 'value' => 3518
10568
+ ),array(
10569
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Backyard Feeders"),
10570
+ 'value' => 3519
10571
+ ),array(
10572
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Backyard Feeders > Bird Feeders"),
10573
+ 'value' => 3520
10574
+ ),array(
10575
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Backyard Feeders > Butterfly Feeders"),
10576
+ 'value' => 3521
10577
+ ),array(
10578
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Backyard Feeders > Squirrel Feeders"),
10579
+ 'value' => 3522
10580
+ ),array(
10581
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Baskets"),
10582
+ 'value' => 3523
10583
+ ),array(
10584
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Bird Baths"),
10585
+ 'value' => 3524
10586
+ ),array(
10587
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Bird Feeder Accessories"),
10588
+ 'value' => 3525
10589
+ ),array(
10590
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Birdhouses"),
10591
+ 'value' => 3526
10592
+ ),array(
10593
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Bookends"),
10594
+ 'value' => 3527
10595
+ ),array(
10596
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Candle & Oil Warmers"),
10597
+ 'value' => 3528
10598
+ ),array(
10599
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Candle Holders"),
10600
+ 'value' => 3529
10601
+ ),array(
10602
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Candle Holders > Menorahs"),
10603
+ 'value' => 3530
10604
+ ),array(
10605
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Candles"),
10606
+ 'value' => 3531
10607
+ ),array(
10608
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Candles > Hanukkah Candles"),
10609
+ 'value' => 3532
10610
+ ),array(
10611
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Candles > Unity Candles"),
10612
+ 'value' => 3533
10613
+ ),array(
10614
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Chair & Sofa Cushions"),
10615
+ 'value' => 3534
10616
+ ),array(
10617
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks"),
10618
+ 'value' => 3535
10619
+ ),array(
10620
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks > Alarm Clocks"),
10621
+ 'value' => 3536
10622
+ ),array(
10623
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks > Alarm Clocks > Clock Radios"),
10624
+ 'value' => 3537
10625
+ ),array(
10626
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks > Alarm Clocks > Portable Alarm Clocks"),
10627
+ 'value' => 3538
10628
+ ),array(
10629
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks > Desk & Shelf Clocks"),
10630
+ 'value' => 3539
10631
+ ),array(
10632
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks > Floor & Grandfather Clocks"),
10633
+ 'value' => 3540
10634
+ ),array(
10635
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks > Wall Clocks"),
10636
+ 'value' => 3541
10637
+ ),array(
10638
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Clocks > Wall Clocks > Cuckoo Clocks"),
10639
+ 'value' => 3542
10640
+ ),array(
10641
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Coat & Hat Racks"),
10642
+ 'value' => 3543
10643
+ ),array(
10644
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Decorative Bells"),
10645
+ 'value' => 3544
10646
+ ),array(
10647
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Decorative Bottles"),
10648
+ 'value' => 3545
10649
+ ),array(
10650
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Decorative Bowls"),
10651
+ 'value' => 3546
10652
+ ),array(
10653
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Decorative Jars"),
10654
+ 'value' => 3547
10655
+ ),array(
10656
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Decorative Plaques"),
10657
+ 'value' => 3548
10658
+ ),array(
10659
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Decorative Plates"),
10660
+ 'value' => 3549
10661
+ ),array(
10662
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Decorative Trays"),
10663
+ 'value' => 3550
10664
+ ),array(
10665
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Door Mats"),
10666
+ 'value' => 3551
10667
+ ),array(
10668
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Dreamcatchers"),
10669
+ 'value' => 3552
10670
+ ),array(
10671
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Dried Flowers"),
10672
+ 'value' => 3553
10673
+ ),array(
10674
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Ecospheres"),
10675
+ 'value' => 3554
10676
+ ),array(
10677
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Figurines"),
10678
+ 'value' => 3555
10679
+ ),array(
10680
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Finials"),
10681
+ 'value' => 3556
10682
+ ),array(
10683
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Flag & Windsock Accessories"),
10684
+ 'value' => 3557
10685
+ ),array(
10686
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Pole Lights"),
10687
+ 'value' => 3558
10688
+ ),array(
10689
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Flag & Windsock Accessories > Flag & Windsock Poles"),
10690
+ 'value' => 3559
10691
+ ),array(
10692
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Flags & Windsocks"),
10693
+ 'value' => 3560
10694
+ ),array(
10695
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Flameless Candles"),
10696
+ 'value' => 3561
10697
+ ),array(
10698
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Fountains & Ponds"),
10699
+ 'value' => 3562
10700
+ ),array(
10701
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Fountains & Ponds > Fountain & Pond Accessories"),
10702
+ 'value' => 3563
10703
+ ),array(
10704
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Fountains & Ponds > Fountains"),
10705
+ 'value' => 3564
10706
+ ),array(
10707
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Fountains & Ponds > Fountains > Indoor Fountains"),
10708
+ 'value' => 3565
10709
+ ),array(
10710
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Fountains & Ponds > Fountains > Outdoor Fountains"),
10711
+ 'value' => 3566
10712
+ ),array(
10713
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Fountains & Ponds > Ponds"),
10714
+ 'value' => 3567
10715
+ ),array(
10716
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Garden & Stepping Stones"),
10717
+ 'value' => 3568
10718
+ ),array(
10719
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Garden Sculptures"),
10720
+ 'value' => 3569
10721
+ ),array(
10722
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Home Fragrances"),
10723
+ 'value' => 3570
10724
+ ),array(
10725
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Home Fragrances > Air Fresheners"),
10726
+ 'value' => 3571
10727
+ ),array(
10728
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Home Fragrances > Fragrance Oil"),
10729
+ 'value' => 3572
10730
+ ),array(
10731
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Home Fragrances > Incense"),
10732
+ 'value' => 3573
10733
+ ),array(
10734
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Home Fragrances > Incense Holders"),
10735
+ 'value' => 3574
10736
+ ),array(
10737
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Home Fragrances > Potpourri"),
10738
+ 'value' => 3575
10739
+ ),array(
10740
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > House Numbers & Letters"),
10741
+ 'value' => 3576
10742
+ ),array(
10743
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Lawn Ornaments"),
10744
+ 'value' => 3577
10745
+ ),array(
10746
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Lawn Ornaments > Gazing Globes"),
10747
+ 'value' => 3578
10748
+ ),array(
10749
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mail Slots"),
10750
+ 'value' => 3579
10751
+ ),array(
10752
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailbox Accessories"),
10753
+ 'value' => 3580
10754
+ ),array(
10755
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailbox Accessories > Mailbox Covers"),
10756
+ 'value' => 3581
10757
+ ),array(
10758
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailbox Accessories > Mailbox Enclosures"),
10759
+ 'value' => 3582
10760
+ ),array(
10761
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailbox Accessories > Mailbox Flags"),
10762
+ 'value' => 3583
10763
+ ),array(
10764
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailbox Accessories > Mailbox Mounting Brackets"),
10765
+ 'value' => 3584
10766
+ ),array(
10767
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailbox Accessories > Mailbox Posts"),
10768
+ 'value' => 3585
10769
+ ),array(
10770
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailbox Accessories > Mailbox Replacement Doors"),
10771
+ 'value' => 3586
10772
+ ),array(
10773
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mailboxes"),
10774
+ 'value' => 3587
10775
+ ),array(
10776
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Mirrors"),
10777
+ 'value' => 3588
10778
+ ),array(
10779
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Music Boxes"),
10780
+ 'value' => 3589
10781
+ ),array(
10782
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Napkin Rings"),
10783
+ 'value' => 3590
10784
+ ),array(
10785
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Novelty Signs"),
10786
+ 'value' => 3591
10787
+ ),array(
10788
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Ottoman Cushions"),
10789
+ 'value' => 3592
10790
+ ),array(
10791
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Picture Frames"),
10792
+ 'value' => 3593
10793
+ ),array(
10794
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Picture Frames > Digital Picture Frames"),
10795
+ 'value' => 3594
10796
+ ),array(
10797
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Picture Frames > Poster Frames"),
10798
+ 'value' => 3595
10799
+ ),array(
10800
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Piggy Banks & Money Jars"),
10801
+ 'value' => 3596
10802
+ ),array(
10803
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Rain Chains"),
10804
+ 'value' => 3597
10805
+ ),array(
10806
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Rain Gauges"),
10807
+ 'value' => 3598
10808
+ ),array(
10809
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Refrigerator Magnets"),
10810
+ 'value' => 3599
10811
+ ),array(
10812
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Rugs"),
10813
+ 'value' => 3600
10814
+ ),array(
10815
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Rugs > Electric Rugs"),
10816
+ 'value' => 3601
10817
+ ),array(
10818
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations"),
10819
+ 'value' => 3602
10820
+ ),array(
10821
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Advent Calendars"),
10822
+ 'value' => 3603
10823
+ ),array(
10824
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Christmas Tree Skirts"),
10825
+ 'value' => 3604
10826
+ ),array(
10827
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Christmas Tree Stands"),
10828
+ 'value' => 3605
10829
+ ),array(
10830
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornament Displays"),
10831
+ 'value' => 3606
10832
+ ),array(
10833
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Ornaments"),
10834
+ 'value' => 3607
10835
+ ),array(
10836
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Stocking Hangers"),
10837
+ 'value' => 3608
10838
+ ),array(
10839
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Holiday Stockings"),
10840
+ 'value' => 3609
10841
+ ),array(
10842
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Nativity Sets"),
10843
+ 'value' => 3610
10844
+ ),array(
10845
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Seasonal & Holiday Decorations > Ornament Storage Containers"),
10846
+ 'value' => 3611
10847
+ ),array(
10848
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Shadow Boxes"),
10849
+ 'value' => 3612
10850
+ ),array(
10851
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Slipcovers"),
10852
+ 'value' => 3613
10853
+ ),array(
10854
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Snow Globes"),
10855
+ 'value' => 3614
10856
+ ),array(
10857
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Suncatchers"),
10858
+ 'value' => 3615
10859
+ ),array(
10860
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Sundials"),
10861
+ 'value' => 3616
10862
+ ),array(
10863
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Throw Pillows"),
10864
+ 'value' => 3617
10865
+ ),array(
10866
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Tiki Torches & Oil Lamps"),
10867
+ 'value' => 3618
10868
+ ),array(
10869
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Trunks"),
10870
+ 'value' => 3619
10871
+ ),array(
10872
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Vases"),
10873
+ 'value' => 3620
10874
+ ),array(
10875
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Wall & Window Decals"),
10876
+ 'value' => 3621
10877
+ ),array(
10878
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Wall Shelves & Ledges"),
10879
+ 'value' => 3622
10880
+ ),array(
10881
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Wax Tarts"),
10882
+ 'value' => 3623
10883
+ ),array(
10884
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Weather Vanes & Roof Decor"),
10885
+ 'value' => 3624
10886
+ ),array(
10887
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Wind Chimes"),
10888
+ 'value' => 3625
10889
+ ),array(
10890
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Wind Wheels & Spinners"),
10891
+ 'value' => 3626
10892
+ ),array(
10893
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Magnets"),
10894
+ 'value' => 3627
10895
+ ),array(
10896
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatment Accessories"),
10897
+ 'value' => 3628
10898
+ ),array(
10899
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatment Accessories > Curtain & Drape Rings"),
10900
+ 'value' => 3629
10901
+ ),array(
10902
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatment Accessories > Curtain & Drape Rods"),
10903
+ 'value' => 3630
10904
+ ),array(
10905
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatment Accessories > Curtain Holdbacks & Tassels"),
10906
+ 'value' => 3631
10907
+ ),array(
10908
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatment Accessories > Window Treatment Replacement Parts"),
10909
+ 'value' => 3632
10910
+ ),array(
10911
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatments"),
10912
+ 'value' => 3633
10913
+ ),array(
10914
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatments > Curtains & Drapes"),
10915
+ 'value' => 3634
10916
+ ),array(
10917
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatments > Stained Glass Panels"),
10918
+ 'value' => 3635
10919
+ ),array(
10920
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatments > Window Blinds & Shades"),
10921
+ 'value' => 3636
10922
+ ),array(
10923
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatments > Window Films"),
10924
+ 'value' => 3637
10925
+ ),array(
10926
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatments > Window Screens"),
10927
+ 'value' => 3638
10928
+ ),array(
10929
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Window Treatments > Window Valances & Cornices"),
10930
+ 'value' => 3639
10931
+ ),array(
10932
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > World Globes"),
10933
+ 'value' => 3640
10934
+ ),array(
10935
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Decor > Wreaths & Garlands"),
10936
+ 'value' => 3641
10937
+ ),array(
10938
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Emergency Preparedness"),
10939
+ 'value' => 3642
10940
+ ),array(
10941
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Emergency Preparedness > Earthquake Alarms"),
10942
+ 'value' => 3643
10943
+ ),array(
10944
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Emergency Preparedness > Emergency Food"),
10945
+ 'value' => 3644
10946
+ ),array(
10947
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Emergency Preparedness > Emergency Tools & Kits"),
10948
+ 'value' => 3645
10949
+ ),array(
10950
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Emergency Preparedness > Furniture Anchors"),
10951
+ 'value' => 3646
10952
+ ),array(
10953
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety"),
10954
+ 'value' => 3647
10955
+ ),array(
10956
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Carbon Monoxide Detectors"),
10957
+ 'value' => 3648
10958
+ ),array(
10959
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Fire Alarm Control Panels"),
10960
+ 'value' => 3649
10961
+ ),array(
10962
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Fire Alarms"),
10963
+ 'value' => 3650
10964
+ ),array(
10965
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Fire Extinguisher Cabinets"),
10966
+ 'value' => 3651
10967
+ ),array(
10968
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Fire Extinguishers"),
10969
+ 'value' => 3652
10970
+ ),array(
10971
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Fire Sprinklers"),
10972
+ 'value' => 3653
10973
+ ),array(
10974
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Heat Detectors"),
10975
+ 'value' => 3654
10976
+ ),array(
10977
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Radon Detectors"),
10978
+ 'value' => 3655
10979
+ ),array(
10980
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fire & Gas Safety > Smoke Detectors"),
10981
+ 'value' => 3656
10982
+ ),array(
10983
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories"),
10984
+ 'value' => 3657
10985
+ ),array(
10986
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Bellows"),
10987
+ 'value' => 3658
10988
+ ),array(
10989
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Fireplace & Wood Stove Grates"),
10990
+ 'value' => 3659
10991
+ ),array(
10992
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Andirons"),
10993
+ 'value' => 3660
10994
+ ),array(
10995
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Reflectors"),
10996
+ 'value' => 3661
10997
+ ),array(
10998
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Screens"),
10999
+ 'value' => 3662
11000
+ ),array(
11001
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Fireplace Tools"),
11002
+ 'value' => 3663
11003
+ ),array(
11004
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Firewood & Fuel"),
11005
+ 'value' => 3664
11006
+ ),array(
11007
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Hearth Pads"),
11008
+ 'value' => 3665
11009
+ ),array(
11010
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Log Rack & Carrier Accessories"),
11011
+ 'value' => 3666
11012
+ ),array(
11013
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Log Racks & Carriers"),
11014
+ 'value' => 3667
11015
+ ),array(
11016
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplace & Wood Stove Accessories > Wood Stove Fans & Blowers"),
11017
+ 'value' => 3668
11018
+ ),array(
11019
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplaces"),
11020
+ 'value' => 3669
11021
+ ),array(
11022
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplaces > Indoor Fireplaces"),
11023
+ 'value' => 3670
11024
+ ),array(
11025
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Fireplaces > Outdoor Fireplaces"),
11026
+ 'value' => 3671
11027
+ ),array(
11028
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security"),
11029
+ 'value' => 3672
11030
+ ),array(
11031
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Dummy Surveillance Cameras"),
11032
+ 'value' => 3673
11033
+ ),array(
11034
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Home Alarm Systems"),
11035
+ 'value' => 3674
11036
+ ),array(
11037
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Motion Sensors"),
11038
+ 'value' => 3675
11039
+ ),array(
11040
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Security Lights"),
11041
+ 'value' => 3676
11042
+ ),array(
11043
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Security Monitors & Recorders"),
11044
+ 'value' => 3677
11045
+ ),array(
11046
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Security Safes"),
11047
+ 'value' => 3678
11048
+ ),array(
11049
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Security System Sensors"),
11050
+ 'value' => 3679
11051
+ ),array(
11052
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Home Security > Tracking Devices"),
11053
+ 'value' => 3680
11054
+ ),array(
11055
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories"),
11056
+ 'value' => 3681
11057
+ ),array(
11058
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Air Conditioner Accessories"),
11059
+ 'value' => 3682
11060
+ ),array(
11061
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Air Conditioner Accessories > Air Conditioner Covers"),
11062
+ 'value' => 3683
11063
+ ),array(
11064
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Air Conditioner Accessories > Air Conditioner Filters"),
11065
+ 'value' => 3684
11066
+ ),array(
11067
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Air Purifier Accessories"),
11068
+ 'value' => 3685
11069
+ ),array(
11070
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Air Purifier Accessories > Air Purifier Filters"),
11071
+ 'value' => 3686
11072
+ ),array(
11073
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Carpet & Steam Cleaner Accessories"),
11074
+ 'value' => 3687
11075
+ ),array(
11076
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Dehumidifier Accessories"),
11077
+ 'value' => 3688
11078
+ ),array(
11079
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Dehumidifier Accessories > Dehumidifier Filters"),
11080
+ 'value' => 3689
11081
+ ),array(
11082
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Fan Accessories"),
11083
+ 'value' => 3690
11084
+ ),array(
11085
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Furnace & Boiler Accessories"),
11086
+ 'value' => 3691
11087
+ ),array(
11088
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Heating Radiator Accessories"),
11089
+ 'value' => 3692
11090
+ ),array(
11091
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Heating Radiator Accessories > Heating Radiator Reflectors"),
11092
+ 'value' => 3693
11093
+ ),array(
11094
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Humidifier Accessories"),
11095
+ 'value' => 3694
11096
+ ),array(
11097
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Humidifier Accessories > Humidifier Filters"),
11098
+ 'value' => 3695
11099
+ ),array(
11100
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories"),
11101
+ 'value' => 3696
11102
+ ),array(
11103
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Dryer Accessories"),
11104
+ 'value' => 3697
11105
+ ),array(
11106
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Garment Steamer Accessories"),
11107
+ 'value' => 3698
11108
+ ),array(
11109
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Iron Accessories"),
11110
+ 'value' => 3699
11111
+ ),array(
11112
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Steam Press Accessories"),
11113
+ 'value' => 3700
11114
+ ),array(
11115
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Washing Machine Accessories"),
11116
+ 'value' => 3701
11117
+ ),array(
11118
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Washing Machine Accessories > Washing Machine & Dryer Pedestals"),
11119
+ 'value' => 3702
11120
+ ),array(
11121
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Washing Machine Accessories > Washing Machine Hoses"),
11122
+ 'value' => 3703
11123
+ ),array(
11124
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Laundry Appliance Accessories > Washing Machine Accessories > Washing Machine Valves"),
11125
+ 'value' => 3704
11126
+ ),array(
11127
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Patio Heater Accessories"),
11128
+ 'value' => 3705
11129
+ ),array(
11130
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Patio Heater Accessories > Patio Heater Covers"),
11131
+ 'value' => 3706
11132
+ ),array(
11133
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Sewing Machine Accessories"),
11134
+ 'value' => 3707
11135
+ ),array(
11136
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Sewing Machine Accessories > Bobbins & Bobbin Cases"),
11137
+ 'value' => 3708
11138
+ ),array(
11139
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Sewing Machine Accessories > Sewing Machine Cases & Covers"),
11140
+ 'value' => 3709
11141
+ ),array(
11142
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Sewing Machine Accessories > Sewing Machine Feet"),
11143
+ 'value' => 3710
11144
+ ),array(
11145
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Sewing Machine Accessories > Sewing Machine Needles"),
11146
+ 'value' => 3711
11147
+ ),array(
11148
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Vacuum Accessories"),
11149
+ 'value' => 3712
11150
+ ),array(
11151
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Vacuum Accessories > Vacuum Attachments"),
11152
+ 'value' => 3713
11153
+ ),array(
11154
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Vacuum Accessories > Vacuum Bags"),
11155
+ 'value' => 3714
11156
+ ),array(
11157
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Vacuum Accessories > Vacuum Belts"),
11158
+ 'value' => 3715
11159
+ ),array(
11160
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Vacuum Accessories > Vacuum Filters"),
11161
+ 'value' => 3716
11162
+ ),array(
11163
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Vacuum Accessories > Vacuum Hoses"),
11164
+ 'value' => 3717
11165
+ ),array(
11166
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Water Heater Accessories"),
11167
+ 'value' => 3718
11168
+ ),array(
11169
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Water Heater Accessories > Anode Rods"),
11170
+ 'value' => 3719
11171
+ ),array(
11172
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Water Heater Accessories > Hot Water Cylinders"),
11173
+ 'value' => 3720
11174
+ ),array(
11175
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Elements"),
11176
+ 'value' => 3721
11177
+ ),array(
11178
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Pans"),
11179
+ 'value' => 3722
11180
+ ),array(
11181
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Stacks"),
11182
+ 'value' => 3723
11183
+ ),array(
11184
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliance Accessories > Water Heater Accessories > Water Heater Vents"),
11185
+ 'value' => 3724
11186
+ ),array(
11187
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances"),
11188
+ 'value' => 3725
11189
+ ),array(
11190
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Carpet & Steam Cleaners"),
11191
+ 'value' => 3726
11192
+ ),array(
11193
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances"),
11194
+ 'value' => 3727
11195
+ ),array(
11196
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Air Conditioners"),
11197
+ 'value' => 3728
11198
+ ),array(
11199
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Air Purifiers"),
11200
+ 'value' => 3729
11201
+ ),array(
11202
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Dehumidifiers"),
11203
+ 'value' => 3730
11204
+ ),array(
11205
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Duct Heaters"),
11206
+ 'value' => 3731
11207
+ ),array(
11208
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Evaporative Coolers"),
11209
+ 'value' => 3732
11210
+ ),array(
11211
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Fans"),
11212
+ 'value' => 3733
11213
+ ),array(
11214
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Fans > Ceiling Fans"),
11215
+ 'value' => 3734
11216
+ ),array(
11217
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Fans > Desk & Pedestal Fans"),
11218
+ 'value' => 3735
11219
+ ),array(
11220
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Fans > Personal Handheld Fans"),
11221
+ 'value' => 3736
11222
+ ),array(
11223
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Fans > Ventilation Fans"),
11224
+ 'value' => 3737
11225
+ ),array(
11226
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Furnaces & Boilers"),
11227
+ 'value' => 3738
11228
+ ),array(
11229
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Heating Radiators"),
11230
+ 'value' => 3739
11231
+ ),array(
11232
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Humidifiers"),
11233
+ 'value' => 3740
11234
+ ),array(
11235
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Kotatsu"),
11236
+ 'value' => 3741
11237
+ ),array(
11238
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Outdoor Misting Systems"),
11239
+ 'value' => 3742
11240
+ ),array(
11241
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Patio Heaters"),
11242
+ 'value' => 3743
11243
+ ),array(
11244
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Climate Control Appliances > Space Heaters"),
11245
+ 'value' => 3744
11246
+ ),array(
11247
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Floor Polishers & Buffers"),
11248
+ 'value' => 3745
11249
+ ),array(
11250
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Futon Dryers"),
11251
+ 'value' => 3746
11252
+ ),array(
11253
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Garage Door Openers"),
11254
+ 'value' => 3747
11255
+ ),array(
11256
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Garage Door Remotes"),
11257
+ 'value' => 3748
11258
+ ),array(
11259
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Garage Parking Sensors"),
11260
+ 'value' => 3749
11261
+ ),array(
11262
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Home Automation"),
11263
+ 'value' => 3750
11264
+ ),array(
11265
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Laundry Appliances"),
11266
+ 'value' => 3751
11267
+ ),array(
11268
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Laundry Appliances > Dryers"),
11269
+ 'value' => 3752
11270
+ ),array(
11271
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Laundry Appliances > Garment Steamers"),
11272
+ 'value' => 3753
11273
+ ),array(
11274
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Laundry Appliances > Irons"),
11275
+ 'value' => 3754
11276
+ ),array(
11277
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Laundry Appliances > Laundry Combo Units"),
11278
+ 'value' => 3755
11279
+ ),array(
11280
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Laundry Appliances > Steam Presses"),
11281
+ 'value' => 3756
11282
+ ),array(
11283
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Laundry Appliances > Washing Machines"),
11284
+ 'value' => 3757
11285
+ ),array(
11286
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Sewing Machines"),
11287
+ 'value' => 3758
11288
+ ),array(
11289
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Sewing Machines > Sergers"),
11290
+ 'value' => 3759
11291
+ ),array(
11292
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Vacuums"),
11293
+ 'value' => 3760
11294
+ ),array(
11295
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Wallpaper Steamers"),
11296
+ 'value' => 3761
11297
+ ),array(
11298
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Water Heaters"),
11299
+ 'value' => 3762
11300
+ ),array(
11301
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Appliances > Water Heaters > Immersion Heaters"),
11302
+ 'value' => 3763
11303
+ ),array(
11304
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies"),
11305
+ 'value' => 3764
11306
+ ),array(
11307
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Drawer & Shelf Liners"),
11308
+ 'value' => 3765
11309
+ ),array(
11310
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Furniture Floor Protectors"),
11311
+ 'value' => 3766
11312
+ ),array(
11313
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Garbage Bags"),
11314
+ 'value' => 3767
11315
+ ),array(
11316
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies"),
11317
+ 'value' => 3768
11318
+ ),array(
11319
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Broom & Mop Handles"),
11320
+ 'value' => 3769
11321
+ ),array(
11322
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Brooms"),
11323
+ 'value' => 3770
11324
+ ),array(
11325
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Buckets"),
11326
+ 'value' => 3771
11327
+ ),array(
11328
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Carpet Sweepers"),
11329
+ 'value' => 3772
11330
+ ),array(
11331
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Cleaning Gloves"),
11332
+ 'value' => 3773
11333
+ ),array(
11334
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Duster Refills"),
11335
+ 'value' => 3774
11336
+ ),array(
11337
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Dusters"),
11338
+ 'value' => 3775
11339
+ ),array(
11340
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Dustpans"),
11341
+ 'value' => 3776
11342
+ ),array(
11343
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Fabric & Upholstery Protectors"),
11344
+ 'value' => 3777
11345
+ ),array(
11346
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products"),
11347
+ 'value' => 3778
11348
+ ),array(
11349
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > All-Purpose Cleaners"),
11350
+ 'value' => 3779
11351
+ ),array(
11352
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Carpet Cleaners"),
11353
+ 'value' => 3780
11354
+ ),array(
11355
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Dish Detergent & Soap"),
11356
+ 'value' => 3781
11357
+ ),array(
11358
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Dishwasher Cleaners"),
11359
+ 'value' => 3782
11360
+ ),array(
11361
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Fabric & Upholstery Cleaners"),
11362
+ 'value' => 3783
11363
+ ),array(
11364
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Furniture Cleaners & Polish"),
11365
+ 'value' => 3784
11366
+ ),array(
11367
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Glass & Surface Cleaners"),
11368
+ 'value' => 3785
11369
+ ),array(
11370
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Hardwood Floor Cleaners"),
11371
+ 'value' => 3786
11372
+ ),array(
11373
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Household Disinfectants"),
11374
+ 'value' => 3787
11375
+ ),array(
11376
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Leather Care & Dyes"),
11377
+ 'value' => 3788
11378
+ ),array(
11379
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Oven & Grill Cleaners"),
11380
+ 'value' => 3789
11381
+ ),array(
11382
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Pet Odor & Stain Removers"),
11383
+ 'value' => 3790
11384
+ ),array(
11385
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Rinse Aids"),
11386
+ 'value' => 3791
11387
+ ),array(
11388
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Stainless Steel Cleaners & Polishes"),
11389
+ 'value' => 3792
11390
+ ),array(
11391
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Stone Cleaners"),
11392
+ 'value' => 3793
11393
+ ),array(
11394
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Toilet Bowl Cleaners"),
11395
+ 'value' => 3794
11396
+ ),array(
11397
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Tub & Tile Cleaners"),
11398
+ 'value' => 3795
11399
+ ),array(
11400
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Household Cleaning Products > Washing Machine Cleaners"),
11401
+ 'value' => 3796
11402
+ ),array(
11403
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Mop Heads & Refills"),
11404
+ 'value' => 3797
11405
+ ),array(
11406
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Mops"),
11407
+ 'value' => 3798
11408
+ ),array(
11409
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Scrub Brushes"),
11410
+ 'value' => 3799
11411
+ ),array(
11412
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Scrub Brushes > Baby Bottle Brushes"),
11413
+ 'value' => 3800
11414
+ ),array(
11415
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Sponges & Scouring Pads"),
11416
+ 'value' => 3801
11417
+ ),array(
11418
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Cleaning Supplies > Squeegees"),
11419
+ 'value' => 3802
11420
+ ),array(
11421
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Paper Products"),
11422
+ 'value' => 3803
11423
+ ),array(
11424
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Paper Products > Facial Tissues"),
11425
+ 'value' => 3804
11426
+ ),array(
11427
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Paper Products > Paper Napkins"),
11428
+ 'value' => 3805
11429
+ ),array(
11430
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Paper Products > Paper Towels"),
11431
+ 'value' => 3806
11432
+ ),array(
11433
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Paper Products > Toilet Paper"),
11434
+ 'value' => 3807
11435
+ ),array(
11436
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Household Thermometers"),
11437
+ 'value' => 3808
11438
+ ),array(
11439
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies"),
11440
+ 'value' => 3809
11441
+ ),array(
11442
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Bleach"),
11443
+ 'value' => 3810
11444
+ ),array(
11445
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Clothespins"),
11446
+ 'value' => 3811
11447
+ ),array(
11448
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Dry Cleaning Kits"),
11449
+ 'value' => 3812
11450
+ ),array(
11451
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Drying Racks & Hangers"),
11452
+ 'value' => 3813
11453
+ ),array(
11454
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Fabric Refreshers"),
11455
+ 'value' => 3814
11456
+ ),array(
11457
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Fabric Shavers"),
11458
+ 'value' => 3815
11459
+ ),array(
11460
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Fabric Softeners & Dryer Sheets"),
11461
+ 'value' => 3816
11462
+ ),array(
11463
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Fabric Stain Removers"),
11464
+ 'value' => 3817
11465
+ ),array(
11466
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Fabric Starch"),
11467
+ 'value' => 3818
11468
+ ),array(
11469
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Garment Shields"),
11470
+ 'value' => 3819
11471
+ ),array(
11472
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Ironing Board Pads & Covers"),
11473
+ 'value' => 3820
11474
+ ),array(
11475
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Ironing Boards"),
11476
+ 'value' => 3821
11477
+ ),array(
11478
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Laundry Balls"),
11479
+ 'value' => 3822
11480
+ ),array(
11481
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Laundry Baskets"),
11482
+ 'value' => 3823
11483
+ ),array(
11484
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Laundry Detergent"),
11485
+ 'value' => 3824
11486
+ ),array(
11487
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Lint Rollers"),
11488
+ 'value' => 3825
11489
+ ),array(
11490
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Washing Bags & Baskets"),
11491
+ 'value' => 3826
11492
+ ),array(
11493
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Laundry Supplies > Wrinkle Releasers & Static Sprays"),
11494
+ 'value' => 3827
11495
+ ),array(
11496
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Moisture Absorbers"),
11497
+ 'value' => 3828
11498
+ ),array(
11499
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Pest Control"),
11500
+ 'value' => 3829
11501
+ ),array(
11502
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Pest Control > Fly Swatters"),
11503
+ 'value' => 3830
11504
+ ),array(
11505
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Pest Control > Pest Control Traps"),
11506
+ 'value' => 3831
11507
+ ),array(
11508
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Pest Control > Pesticides"),
11509
+ 'value' => 3832
11510
+ ),array(
11511
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Pest Control > Repellents"),
11512
+ 'value' => 3833
11513
+ ),array(
11514
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Pest Control > Repellents > Animal & Pet Repellents"),
11515
+ 'value' => 3834
11516
+ ),array(
11517
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Pest Control > Repellents > Household Insect Repellents"),
11518
+ 'value' => 3835
11519
+ ),array(
11520
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Rug Pads"),
11521
+ 'value' => 3836
11522
+ ),array(
11523
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools"),
11524
+ 'value' => 3837
11525
+ ),array(
11526
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Boot Pulls"),
11527
+ 'value' => 3838
11528
+ ),array(
11529
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Bags"),
11530
+ 'value' => 3839
11531
+ ),array(
11532
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Brushes"),
11533
+ 'value' => 3840
11534
+ ),array(
11535
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Care Kits"),
11536
+ 'value' => 3841
11537
+ ),array(
11538
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Dryers"),
11539
+ 'value' => 3842
11540
+ ),array(
11541
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Horns"),
11542
+ 'value' => 3843
11543
+ ),array(
11544
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Polishers"),
11545
+ 'value' => 3844
11546
+ ),array(
11547
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Polishes & Waxes"),
11548
+ 'value' => 3845
11549
+ ),array(
11550
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Scrapers"),
11551
+ 'value' => 3846
11552
+ ),array(
11553
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Treatments & Dyes"),
11554
+ 'value' => 3847
11555
+ ),array(
11556
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Shoe Care & Tools > Shoe Trees & Shapers"),
11557
+ 'value' => 3848
11558
+ ),array(
11559
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization"),
11560
+ 'value' => 3849
11561
+ ),array(
11562
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage"),
11563
+ 'value' => 3850
11564
+ ),array(
11565
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Hangers"),
11566
+ 'value' => 3851
11567
+ ),array(
11568
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Hat Boxes"),
11569
+ 'value' => 3852
11570
+ ),array(
11571
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Clothing & Closet Storage > Shoe Racks & Organizers"),
11572
+ 'value' => 3853
11573
+ ),array(
11574
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Flatware Chests"),
11575
+ 'value' => 3854
11576
+ ),array(
11577
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Gift Wrap Storage & Organization"),
11578
+ 'value' => 3855
11579
+ ),array(
11580
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Household Storage Bags"),
11581
+ 'value' => 3856
11582
+ ),array(
11583
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Household Storage Caddies"),
11584
+ 'value' => 3857
11585
+ ),array(
11586
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Household Storage Containers"),
11587
+ 'value' => 3858
11588
+ ),array(
11589
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Household Storage Drawers"),
11590
+ 'value' => 3859
11591
+ ),array(
11592
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Photo Storage"),
11593
+ 'value' => 3860
11594
+ ),array(
11595
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Photo Storage > Photo Albums"),
11596
+ 'value' => 3861
11597
+ ),array(
11598
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Photo Storage > Photo Storage Boxes"),
11599
+ 'value' => 3862
11600
+ ),array(
11601
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Pillboxes"),
11602
+ 'value' => 3863
11603
+ ),array(
11604
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks"),
11605
+ 'value' => 3864
11606
+ ),array(
11607
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Garment Racks"),
11608
+ 'value' => 3865
11609
+ ),array(
11610
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Umbrella Stands & Racks"),
11611
+ 'value' => 3866
11612
+ ),array(
11613
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Storage Hooks & Racks > Utility Hooks"),
11614
+ 'value' => 3867
11615
+ ),array(
11616
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Valets"),
11617
+ 'value' => 3868
11618
+ ),array(
11619
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Valets > Charging Valets"),
11620
+ 'value' => 3869
11621
+ ),array(
11622
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Valets > Clothes Valets"),
11623
+ 'value' => 3870
11624
+ ),array(
11625
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Storage & Organization > Valets > Dresser Valets"),
11626
+ 'value' => 3871
11627
+ ),array(
11628
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Trash Compactor Accessories"),
11629
+ 'value' => 3872
11630
+ ),array(
11631
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment"),
11632
+ 'value' => 3873
11633
+ ),array(
11634
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment > Hazardous Waste Containers"),
11635
+ 'value' => 3874
11636
+ ),array(
11637
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment > Recycling Containers"),
11638
+ 'value' => 3875
11639
+ ),array(
11640
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment > Trash Cans & Wastebaskets"),
11641
+ 'value' => 3876
11642
+ ),array(
11643
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment Accessories"),
11644
+ 'value' => 3877
11645
+ ),array(
11646
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Carts"),
11647
+ 'value' => 3878
11648
+ ),array(
11649
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Frames"),
11650
+ 'value' => 3879
11651
+ ),array(
11652
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Lids"),
11653
+ 'value' => 3880
11654
+ ),array(
11655
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Household Supplies > Waste Containment Accessories > Waste Container Wheels"),
11656
+ 'value' => 3881
11657
+ ),array(
11658
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining"),
11659
+ 'value' => 3882
11660
+ ),array(
11661
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware"),
11662
+ 'value' => 3883
11663
+ ),array(
11664
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Absinthe Fountains"),
11665
+ 'value' => 3884
11666
+ ),array(
11667
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Beer Dispensers & Taps"),
11668
+ 'value' => 3885
11669
+ ),array(
11670
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Bottle Stoppers & Savers"),
11671
+ 'value' => 3886
11672
+ ),array(
11673
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Coaster Holders"),
11674
+ 'value' => 3887
11675
+ ),array(
11676
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Coasters"),
11677
+ 'value' => 3888
11678
+ ),array(
11679
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Corkscrews"),
11680
+ 'value' => 3889
11681
+ ),array(
11682
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Decanters"),
11683
+ 'value' => 3890
11684
+ ),array(
11685
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Drink Shakers & Tools"),
11686
+ 'value' => 3891
11687
+ ),array(
11688
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Drink Shakers & Tools > Bar Ice Picks"),
11689
+ 'value' => 3892
11690
+ ),array(
11691
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Drink Shakers & Tools > Bottle Openers"),
11692
+ 'value' => 3893
11693
+ ),array(
11694
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Drink Shakers & Tools > Drink Shakers"),
11695
+ 'value' => 3894
11696
+ ),array(
11697
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Drink Shakers & Tools > Drink Tool Sets"),
11698
+ 'value' => 3895
11699
+ ),array(
11700
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Foil Cutters"),
11701
+ 'value' => 3896
11702
+ ),array(
11703
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Ice Buckets"),
11704
+ 'value' => 3897
11705
+ ),array(
11706
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Whiskey Stones"),
11707
+ 'value' => 3898
11708
+ ),array(
11709
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Wine Aerators"),
11710
+ 'value' => 3899
11711
+ ),array(
11712
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Wine Buckets & Chillers"),
11713
+ 'value' => 3900
11714
+ ),array(
11715
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Barware > Wine Glass Charms"),
11716
+ 'value' => 3901
11717
+ ),array(
11718
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware"),
11719
+ 'value' => 3902
11720
+ ),array(
11721
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware"),
11722
+ 'value' => 3903
11723
+ ),array(
11724
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Bakeware Sets"),
11725
+ 'value' => 3904
11726
+ ),array(
11727
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Baking & Cookie Sheets"),
11728
+ 'value' => 3905
11729
+ ),array(
11730
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Baking & Specialty Molds"),
11731
+ 'value' => 3906
11732
+ ),array(
11733
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Bread Pans"),
11734
+ 'value' => 3907
11735
+ ),array(
11736
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Broiling Pans"),
11737
+ 'value' => 3908
11738
+ ),array(
11739
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Cake Pans & Molds"),
11740
+ 'value' => 3909
11741
+ ),array(
11742
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Muffin & Cupcake Pans"),
11743
+ 'value' => 3910
11744
+ ),array(
11745
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pie & Quiche Pans"),
11746
+ 'value' => 3911
11747
+ ),array(
11748
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pizza Pans"),
11749
+ 'value' => 3912
11750
+ ),array(
11751
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Pizza Stones"),
11752
+ 'value' => 3913
11753
+ ),array(
11754
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Ramekins & Souffle Dishes"),
11755
+ 'value' => 3914
11756
+ ),array(
11757
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware > Roasting Pans"),
11758
+ 'value' => 3915
11759
+ ),array(
11760
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories"),
11761
+ 'value' => 3916
11762
+ ),array(
11763
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Baking Cups"),
11764
+ 'value' => 3917
11765
+ ),array(
11766
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Baking Mats & Liners"),
11767
+ 'value' => 3918
11768
+ ),array(
11769
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Baking Weights"),
11770
+ 'value' => 3919
11771
+ ),array(
11772
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Bakeware Accessories > Roasting Pan Racks"),
11773
+ 'value' => 3920
11774
+ ),array(
11775
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware"),
11776
+ 'value' => 3921
11777
+ ),array(
11778
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware & Bakeware Combo Sets"),
11779
+ 'value' => 3922
11780
+ ),array(
11781
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Casserole Dishes"),
11782
+ 'value' => 3923
11783
+ ),array(
11784
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Cookware Sets"),
11785
+ 'value' => 3924
11786
+ ),array(
11787
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Crêpe & Blini Pans"),
11788
+ 'value' => 3925
11789
+ ),array(
11790
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Double Boilers"),
11791
+ 'value' => 3926
11792
+ ),array(
11793
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Dutch Ovens"),
11794
+ 'value' => 3927
11795
+ ),array(
11796
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Fermentation & Pickling Crocks"),
11797
+ 'value' => 3928
11798
+ ),array(
11799
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Griddles & Grill Pans"),
11800
+ 'value' => 3929
11801
+ ),array(
11802
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Grill Presses"),
11803
+ 'value' => 3930
11804
+ ),array(
11805
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Paella Pans"),
11806
+ 'value' => 3931
11807
+ ),array(
11808
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Pressure Cookers"),
11809
+ 'value' => 3932
11810
+ ),array(
11811
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Pressure Cookers > Electric Pressure Cookers"),
11812
+ 'value' => 3933
11813
+ ),array(
11814
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Saucepans"),
11815
+ 'value' => 3934
11816
+ ),array(
11817
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Sauté Pans"),
11818
+ 'value' => 3935
11819
+ ),array(
11820
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Skillets & Frying Pans"),
11821
+ 'value' => 3936
11822
+ ),array(
11823
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Stock Pots"),
11824
+ 'value' => 3937
11825
+ ),array(
11826
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Stovetop Kettles"),
11827
+ 'value' => 3938
11828
+ ),array(
11829
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Tajines"),
11830
+ 'value' => 3939
11831
+ ),array(
11832
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware > Woks"),
11833
+ 'value' => 3940
11834
+ ),array(
11835
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories"),
11836
+ 'value' => 3941
11837
+ ),array(
11838
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pot & Pan Handles"),
11839
+ 'value' => 3942
11840
+ ),array(
11841
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pot & Pan Lids"),
11842
+ 'value' => 3943
11843
+ ),array(
11844
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Pressure Cooker Accessories"),
11845
+ 'value' => 3944
11846
+ ),array(
11847
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Steamer Baskets"),
11848
+ 'value' => 3945
11849
+ ),array(
11850
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories"),
11851
+ 'value' => 3946
11852
+ ),array(
11853
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories > Wok Brushes"),
11854
+ 'value' => 3947
11855
+ ),array(
11856
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Cookware & Bakeware > Cookware Accessories > Wok Accessories > Wok Rings"),
11857
+ 'value' => 3948
11858
+ ),array(
11859
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers"),
11860
+ 'value' => 3949
11861
+ ),array(
11862
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Airpots"),
11863
+ 'value' => 3950
11864
+ ),array(
11865
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Canteens"),
11866
+ 'value' => 3951
11867
+ ),array(
11868
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Coolers"),
11869
+ 'value' => 3952
11870
+ ),array(
11871
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Lids"),
11872
+ 'value' => 3953
11873
+ ),array(
11874
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves"),
11875
+ 'value' => 3954
11876
+ ),array(
11877
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves > Can & Bottle Sleeves"),
11878
+ 'value' => 3955
11879
+ ),array(
11880
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Drink Sleeves > Cup Sleeves"),
11881
+ 'value' => 3956
11882
+ ),array(
11883
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Flasks"),
11884
+ 'value' => 3957
11885
+ ),array(
11886
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Insulated Bags"),
11887
+ 'value' => 3958
11888
+ ),array(
11889
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Lunch Boxes & Totes"),
11890
+ 'value' => 3959
11891
+ ),array(
11892
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Picnic Baskets"),
11893
+ 'value' => 3960
11894
+ ),array(
11895
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Thermoses"),
11896
+ 'value' => 3961
11897
+ ),array(
11898
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Water Bottles"),
11899
+ 'value' => 3962
11900
+ ),array(
11901
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food & Beverage Carriers > Wine Carrier Bags"),
11902
+ 'value' => 3963
11903
+ ),array(
11904
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage"),
11905
+ 'value' => 3964
11906
+ ),array(
11907
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Bowl Covers"),
11908
+ 'value' => 3965
11909
+ ),array(
11910
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Bread Boxes & Bags"),
11911
+ 'value' => 3966
11912
+ ),array(
11913
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Candy Buckets"),
11914
+ 'value' => 3967
11915
+ ),array(
11916
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Cookie Jars"),
11917
+ 'value' => 3968
11918
+ ),array(
11919
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Food Storage Bags"),
11920
+ 'value' => 3969
11921
+ ),array(
11922
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Food Storage Containers"),
11923
+ 'value' => 3970
11924
+ ),array(
11925
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Food Wraps"),
11926
+ 'value' => 3971
11927
+ ),array(
11928
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Foil"),
11929
+ 'value' => 3972
11930
+ ),array(
11931
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Parchment Paper"),
11932
+ 'value' => 3973
11933
+ ),array(
11934
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Plastic Wrap"),
11935
+ 'value' => 3974
11936
+ ),array(
11937
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Food Wraps > Wax Paper"),
11938
+ 'value' => 3975
11939
+ ),array(
11940
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage > Honey Jars"),
11941
+ 'value' => 3976
11942
+ ),array(
11943
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage Accessories"),
11944
+ 'value' => 3977
11945
+ ),array(
11946
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage Accessories > Food Wrap Dispensers"),
11947
+ 'value' => 3978
11948
+ ),array(
11949
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage Accessories > Oxygen Absorbers"),
11950
+ 'value' => 3979
11951
+ ),array(
11952
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Food Storage Accessories > Twist Ties & Bag Clips"),
11953
+ 'value' => 3980
11954
+ ),array(
11955
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories"),
11956
+ 'value' => 3981
11957
+ ),array(
11958
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Blender Accessories"),
11959
+ 'value' => 3982
11960
+ ),array(
11961
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Blender Accessories > Blender Jars"),
11962
+ 'value' => 3983
11963
+ ),array(
11964
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Blender Accessories > Blender Lids"),
11965
+ 'value' => 3984
11966
+ ),array(
11967
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Breadmaker Accessories"),
11968
+ 'value' => 3985
11969
+ ),array(
11970
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories"),
11971
+ 'value' => 3986
11972
+ ),array(
11973
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Decanter Warmers"),
11974
+ 'value' => 3987
11975
+ ),array(
11976
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Decanters"),
11977
+ 'value' => 3988
11978
+ ),array(
11979
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Filter Baskets"),
11980
+ 'value' => 3989
11981
+ ),array(
11982
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Filters"),
11983
+ 'value' => 3990
11984
+ ),array(
11985
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Coffee Maker Water Filters"),
11986
+ 'value' => 3991
11987
+ ),array(
11988
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Frothing Pitchers"),
11989
+ 'value' => 3992
11990
+ ),array(
11991
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Portafilters"),
11992
+ 'value' => 3993
11993
+ ),array(
11994
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Coffee Maker & Espresso Machine Accessories > Stovetop Espresso Pot Parts"),
11995
+ 'value' => 3994
11996
+ ),array(
11997
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Cooktop Accessories"),
11998
+ 'value' => 3995
11999
+ ),array(
12000
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Cooktop Accessories > Cooktop Burner Grates"),
12001
+ 'value' => 3996
12002
+ ),array(
12003
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Cotton Candy Machine Accessories"),
12004
+ 'value' => 3997
12005
+ ),array(
12006
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Deep Fryer Accessories"),
12007
+ 'value' => 3998
12008
+ ),array(
12009
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Deep Fryer Accessories > Fryer Baskets"),
12010
+ 'value' => 3999
12011
+ ),array(
12012
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Dishwasher Accessories"),
12013
+ 'value' => 4000
12014
+ ),array(
12015
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Dishwasher Accessories > Dishwasher Glass Racks"),
12016
+ 'value' => 4001
12017
+ ),array(
12018
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Electric Skillet & Wok Accessories"),
12019
+ 'value' => 4002
12020
+ ),array(
12021
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories"),
12022
+ 'value' => 4003
12023
+ ),array(
12024
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Fondue Forks"),
12025
+ 'value' => 4004
12026
+ ),array(
12027
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Fondue Set Accessories > Fondue Pot Stands"),
12028
+ 'value' => 4005
12029
+ ),array(
12030
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories"),
12031
+ 'value' => 4006
12032
+ ),array(
12033
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories > Food Dehydrator Sheets"),
12034
+ 'value' => 4007
12035
+ ),array(
12036
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Dehydrator Accessories > Food Dehydrator Trays"),
12037
+ 'value' => 4008
12038
+ ),array(
12039
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Grinder Accessories"),
12040
+ 'value' => 4009
12041
+ ),array(
12042
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Grinder Accessories > Coffee Grinder Accessories"),
12043
+ 'value' => 4010
12044
+ ),array(
12045
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Grinder Accessories > Meat Grinder Accessories"),
12046
+ 'value' => 4011
12047
+ ),array(
12048
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Grinder Accessories > Spice Grinder Accessories"),
12049
+ 'value' => 4012
12050
+ ),array(
12051
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories"),
12052
+ 'value' => 4013
12053
+ ),array(
12054
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories > Food Mixer Attachments"),
12055
+ 'value' => 4014
12056
+ ),array(
12057
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories > Food Mixer Attachments > Juicer Attachments"),
12058
+ 'value' => 4015
12059
+ ),array(
12060
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories > Food Mixer Attachments > Meat Grinder Attachments"),
12061
+ 'value' => 4016
12062
+ ),array(
12063
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories > Food Mixer Attachments > Pasta Maker Attachments"),
12064
+ 'value' => 4017
12065
+ ),array(
12066
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories > Food Mixer Beaters"),
12067
+ 'value' => 4018
12068
+ ),array(
12069
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories > Food Mixer Bowls"),
12070
+ 'value' => 4019
12071
+ ),array(
12072
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Mixer Accessories > Food Mixer Hooks"),
12073
+ 'value' => 4020
12074
+ ),array(
12075
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Food Processor Accessories"),
12076
+ 'value' => 4021
12077
+ ),array(
12078
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Freezer Accessories"),
12079
+ 'value' => 4022
12080
+ ),array(
12081
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Garbage Disposal Accessories"),
12082
+ 'value' => 4023
12083
+ ),array(
12084
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Cream Maker Accessories"),
12085
+ 'value' => 4024
12086
+ ),array(
12087
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Cream Maker Accessories > Ice Cream Maker Freezer Bowls"),
12088
+ 'value' => 4025
12089
+ ),array(
12090
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Crusher & Shaver Accessories"),
12091
+ 'value' => 4026
12092
+ ),array(
12093
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Ice Maker Accessories"),
12094
+ 'value' => 4027
12095
+ ),array(
12096
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Juicer Accessories"),
12097
+ 'value' => 4028
12098
+ ),array(
12099
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Microwave Oven Accessories"),
12100
+ 'value' => 4029
12101
+ ),array(
12102
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Microwave Oven Accessories > Microwave Drawers"),
12103
+ 'value' => 4030
12104
+ ),array(
12105
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Microwave Oven Accessories > Microwave Trim Kits"),
12106
+ 'value' => 4031
12107
+ ),array(
12108
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories"),
12109
+ 'value' => 4032
12110
+ ),array(
12111
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Charcoal Briquettes"),
12112
+ 'value' => 4033
12113
+ ),array(
12114
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Charcoal Chimneys"),
12115
+ 'value' => 4034
12116
+ ),array(
12117
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Burners"),
12118
+ 'value' => 4035
12119
+ ),array(
12120
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Carts"),
12121
+ 'value' => 4036
12122
+ ),array(
12123
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Covers"),
12124
+ 'value' => 4037
12125
+ ),array(
12126
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Racks & Toppers"),
12127
+ 'value' => 4038
12128
+ ),array(
12129
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grill Spits & Baskets"),
12130
+ 'value' => 4039
12131
+ ),array(
12132
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Outdoor Grilling Planks"),
12133
+ 'value' => 4040
12134
+ ),array(
12135
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Outdoor Grill Accessories > Smoking Chips & Pellets"),
12136
+ 'value' => 4041
12137
+ ),array(
12138
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Oven Accessories"),
12139
+ 'value' => 4042
12140
+ ),array(
12141
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Oven Accessories > Oven Liners"),
12142
+ 'value' => 4043
12143
+ ),array(
12144
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Oven Accessories > Oven Rack Guards"),
12145
+ 'value' => 4044
12146
+ ),array(
12147
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Oven Accessories > Oven Racks"),
12148
+ 'value' => 4045
12149
+ ),array(
12150
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Pasta Maker Accessories"),
12151
+ 'value' => 4046
12152
+ ),array(
12153
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Popcorn Maker Accessories"),
12154
+ 'value' => 4047
12155
+ ),array(
12156
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Portable Cooking Stove Accessories"),
12157
+ 'value' => 4048
12158
+ ),array(
12159
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Range Accessories"),
12160
+ 'value' => 4049
12161
+ ),array(
12162
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Range Accessories > Range Burner Covers"),
12163
+ 'value' => 4050
12164
+ ),array(
12165
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Range Accessories > Range Drip Pans"),
12166
+ 'value' => 4051
12167
+ ),array(
12168
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Refrigerator Accessories"),
12169
+ 'value' => 4052
12170
+ ),array(
12171
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories"),
12172
+ 'value' => 4053
12173
+ ),array(
12174
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories > Steam Table Pan Covers"),
12175
+ 'value' => 4054
12176
+ ),array(
12177
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Steam Table Accessories > Steam Table Pans"),
12178
+ 'value' => 4055
12179
+ ),array(
12180
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Toaster Accessories"),
12181
+ 'value' => 4056
12182
+ ),array(
12183
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Vacuum Sealer Accessories"),
12184
+ 'value' => 4057
12185
+ ),array(
12186
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Vacuum Sealer Accessories > Vacuum Sealer Bags"),
12187
+ 'value' => 4058
12188
+ ),array(
12189
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Water Cooler Accessories"),
12190
+ 'value' => 4059
12191
+ ),array(
12192
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Water Cooler Accessories > Water Cooler Bottles"),
12193
+ 'value' => 4060
12194
+ ),array(
12195
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliance Accessories > Yogurt Maker Accessories"),
12196
+ 'value' => 4061
12197
+ ),array(
12198
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances"),
12199
+ 'value' => 4062
12200
+ ),array(
12201
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Beverage Warmers"),
12202
+ 'value' => 4063
12203
+ ),array(
12204
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Blenders"),
12205
+ 'value' => 4064
12206
+ ),array(
12207
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Breadmakers"),
12208
+ 'value' => 4065
12209
+ ),array(
12210
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Chocolate Tempering Machines"),
12211
+ 'value' => 4066
12212
+ ),array(
12213
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines"),
12214
+ 'value' => 4067
12215
+ ),array(
12216
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Drip Coffee Makers"),
12217
+ 'value' => 4068
12218
+ ),array(
12219
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Electric & Stovetop Espresso Pots"),
12220
+ 'value' => 4069
12221
+ ),array(
12222
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Espresso Machines"),
12223
+ 'value' => 4070
12224
+ ),array(
12225
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > French Presses"),
12226
+ 'value' => 4071
12227
+ ),array(
12228
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Percolators"),
12229
+ 'value' => 4072
12230
+ ),array(
12231
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Coffee Makers & Espresso Machines > Vacuum Coffee Makers"),
12232
+ 'value' => 4073
12233
+ ),array(
12234
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Cooktops"),
12235
+ 'value' => 4074
12236
+ ),array(
12237
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Cotton Candy Machines"),
12238
+ 'value' => 4075
12239
+ ),array(
12240
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Crêpe Makers"),
12241
+ 'value' => 4076
12242
+ ),array(
12243
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Deep Fryers"),
12244
+ 'value' => 4077
12245
+ ),array(
12246
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Dishwashers"),
12247
+ 'value' => 4078
12248
+ ),array(
12249
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Griddles & Grills"),
12250
+ 'value' => 4079
12251
+ ),array(
12252
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Griddles & Grills > Electric Griddles"),
12253
+ 'value' => 4080
12254
+ ),array(
12255
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Griddles & Grills > Electric Grills"),
12256
+ 'value' => 4081
12257
+ ),array(
12258
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Kettles"),
12259
+ 'value' => 4082
12260
+ ),array(
12261
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Electric Skillets & Woks"),
12262
+ 'value' => 4083
12263
+ ),array(
12264
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Fondue Sets"),
12265
+ 'value' => 4084
12266
+ ),array(
12267
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers"),
12268
+ 'value' => 4085
12269
+ ),array(
12270
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Egg Cookers"),
12271
+ 'value' => 4086
12272
+ ),array(
12273
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Food Steamers"),
12274
+ 'value' => 4087
12275
+ ),array(
12276
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Rice Cookers"),
12277
+ 'value' => 4088
12278
+ ),array(
12279
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Slow Cookers"),
12280
+ 'value' => 4089
12281
+ ),array(
12282
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Thermal Cookers"),
12283
+ 'value' => 4090
12284
+ ),array(
12285
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Cookers & Steamers > Water Ovens"),
12286
+ 'value' => 4091
12287
+ ),array(
12288
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Dehydrators"),
12289
+ 'value' => 4092
12290
+ ),array(
12291
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Grinders & Mills"),
12292
+ 'value' => 4093
12293
+ ),array(
12294
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Grinders & Mills > Coffee Grinders"),
12295
+ 'value' => 4094
12296
+ ),array(
12297
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Grinders & Mills > Grain Mills"),
12298
+ 'value' => 4095
12299
+ ),array(
12300
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Grinders & Mills > Meat Grinders"),
12301
+ 'value' => 4096
12302
+ ),array(
12303
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Grinders & Mills > Spice Grinders"),
12304
+ 'value' => 4097
12305
+ ),array(
12306
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Mixers"),
12307
+ 'value' => 4098
12308
+ ),array(
12309
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Processors"),
12310
+ 'value' => 4099
12311
+ ),array(
12312
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Slicers"),
12313
+ 'value' => 4100
12314
+ ),array(
12315
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Slicers > Deli Slicers"),
12316
+ 'value' => 4101
12317
+ ),array(
12318
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Smokers"),
12319
+ 'value' => 4102
12320
+ ),array(
12321
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers"),
12322
+ 'value' => 4103
12323
+ ),array(
12324
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Chafing Dishes"),
12325
+ 'value' => 4104
12326
+ ),array(
12327
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Food Heat Lamps"),
12328
+ 'value' => 4105
12329
+ ),array(
12330
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Food Warmers > Steam Tables"),
12331
+ 'value' => 4106
12332
+ ),array(
12333
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Freezers"),
12334
+ 'value' => 4107
12335
+ ),array(
12336
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Garbage Disposals"),
12337
+ 'value' => 4108
12338
+ ),array(
12339
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Gas Griddles"),
12340
+ 'value' => 4109
12341
+ ),array(
12342
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Hot Drink Makers"),
12343
+ 'value' => 4110
12344
+ ),array(
12345
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Hot Plates"),
12346
+ 'value' => 4111
12347
+ ),array(
12348
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Cream Makers"),
12349
+ 'value' => 4112
12350
+ ),array(
12351
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Crushers & Shavers"),
12352
+ 'value' => 4113
12353
+ ),array(
12354
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ice Makers"),
12355
+ 'value' => 4114
12356
+ ),array(
12357
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Juicers"),
12358
+ 'value' => 4115
12359
+ ),array(
12360
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Juicers > Hand Juicers"),
12361
+ 'value' => 4116
12362
+ ),array(
12363
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Knife Sharpeners"),
12364
+ 'value' => 4117
12365
+ ),array(
12366
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Microwave Ovens"),
12367
+ 'value' => 4118
12368
+ ),array(
12369
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Milk Frothers & Steamers"),
12370
+ 'value' => 4119
12371
+ ),array(
12372
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Mochi Makers"),
12373
+ 'value' => 4120
12374
+ ),array(
12375
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Outdoor Grills"),
12376
+ 'value' => 4121
12377
+ ),array(
12378
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Outdoor Grills > Charcoal Grills"),
12379
+ 'value' => 4122
12380
+ ),array(
12381
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Outdoor Grills > Gas Grills"),
12382
+ 'value' => 4123
12383
+ ),array(
12384
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ovens"),
12385
+ 'value' => 4124
12386
+ ),array(
12387
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ovens > Conveyor Ovens"),
12388
+ 'value' => 4125
12389
+ ),array(
12390
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ovens > Deck Ovens"),
12391
+ 'value' => 4126
12392
+ ),array(
12393
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ovens > Wall Ovens"),
12394
+ 'value' => 4127
12395
+ ),array(
12396
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Pasta Makers"),
12397
+ 'value' => 4128
12398
+ ),array(
12399
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Popcorn Makers"),
12400
+ 'value' => 4129
12401
+ ),array(
12402
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Portable Cooking Stoves"),
12403
+ 'value' => 4130
12404
+ ),array(
12405
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Range Hoods"),
12406
+ 'value' => 4131
12407
+ ),array(
12408
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Ranges"),
12409
+ 'value' => 4132
12410
+ ),array(
12411
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Refrigerators"),
12412
+ 'value' => 4133
12413
+ ),array(
12414
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Roaster Ovens & Rotisseries"),
12415
+ 'value' => 4134
12416
+ ),array(
12417
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Slush Machines"),
12418
+ 'value' => 4135
12419
+ ),array(
12420
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Soda Makers"),
12421
+ 'value' => 4136
12422
+ ),array(
12423
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Soy Milk Makers"),
12424
+ 'value' => 4137
12425
+ ),array(
12426
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Tea Makers"),
12427
+ 'value' => 4138
12428
+ ),array(
12429
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills"),
12430
+ 'value' => 4139
12431
+ ),array(
12432
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Donut Makers"),
12433
+ 'value' => 4140
12434
+ ),array(
12435
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Muffin & Cupcake Makers"),
12436
+ 'value' => 4141
12437
+ ),array(
12438
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pizza Makers & Ovens"),
12439
+ 'value' => 4142
12440
+ ),array(
12441
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pizzelle Makers"),
12442
+ 'value' => 4143
12443
+ ),array(
12444
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Pretzel Makers"),
12445
+ 'value' => 4144
12446
+ ),array(
12447
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Sandwich Makers"),
12448
+ 'value' => 4145
12449
+ ),array(
12450
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Toaster Ovens"),
12451
+ 'value' => 4146
12452
+ ),array(
12453
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Toasters"),
12454
+ 'value' => 4147
12455
+ ),array(
12456
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Tortilla & Flatbread Makers"),
12457
+ 'value' => 4148
12458
+ ),array(
12459
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Toasters & Grills > Waffle Irons"),
12460
+ 'value' => 4149
12461
+ ),array(
12462
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Trash Compactors"),
12463
+ 'value' => 4150
12464
+ ),array(
12465
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Vacuum Sealers"),
12466
+ 'value' => 4151
12467
+ ),array(
12468
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Water Coolers"),
12469
+ 'value' => 4152
12470
+ ),array(
12471
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Water Filters"),
12472
+ 'value' => 4153
12473
+ ),array(
12474
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Wine Fridges"),
12475
+ 'value' => 4154
12476
+ ),array(
12477
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Appliances > Yogurt Makers"),
12478
+ 'value' => 4155
12479
+ ),array(
12480
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils"),
12481
+ 'value' => 4156
12482
+ ),array(
12483
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Aprons"),
12484
+ 'value' => 4157
12485
+ ),array(
12486
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Baking Peels"),
12487
+ 'value' => 4158
12488
+ ),array(
12489
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Basters"),
12490
+ 'value' => 4159
12491
+ ),array(
12492
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Basting Brushes"),
12493
+ 'value' => 4160
12494
+ ),array(
12495
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Beverage Dispensers"),
12496
+ 'value' => 4161
12497
+ ),array(
12498
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cake Decorating Supplies"),
12499
+ 'value' => 4162
12500
+ ),array(
12501
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cake Servers"),
12502
+ 'value' => 4163
12503
+ ),array(
12504
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Can Crushers"),
12505
+ 'value' => 4164
12506
+ ),array(
12507
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Can Openers"),
12508
+ 'value' => 4165
12509
+ ),array(
12510
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Candy & Chocolate Molds"),
12511
+ 'value' => 4166
12512
+ ),array(
12513
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Carving Forks"),
12514
+ 'value' => 4167
12515
+ ),array(
12516
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Channel Knives"),
12517
+ 'value' => 4168
12518
+ ),array(
12519
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Citrus Reamers"),
12520
+ 'value' => 4169
12521
+ ),array(
12522
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Colanders & Strainers"),
12523
+ 'value' => 4170
12524
+ ),array(
12525
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Condiment Dispensers"),
12526
+ 'value' => 4171
12527
+ ),array(
12528
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cookie Cutters"),
12529
+ 'value' => 4172
12530
+ ),array(
12531
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cookie Presses"),
12532
+ 'value' => 4173
12533
+ ),array(
12534
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Thermometer Accessories"),
12535
+ 'value' => 4174
12536
+ ),array(
12537
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Thermometers"),
12538
+ 'value' => 4175
12539
+ ),array(
12540
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Timers"),
12541
+ 'value' => 4176
12542
+ ),array(
12543
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooking Torches"),
12544
+ 'value' => 4177
12545
+ ),array(
12546
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cooling Racks"),
12547
+ 'value' => 4178
12548
+ ),array(
12549
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Cutting Boards"),
12550
+ 'value' => 4179
12551
+ ),array(
12552
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Dicers & Choppers"),
12553
+ 'value' => 4180
12554
+ ),array(
12555
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Dish Racks & Drain Boards"),
12556
+ 'value' => 4181
12557
+ ),array(
12558
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Dough Wheels"),
12559
+ 'value' => 4182
12560
+ ),array(
12561
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knife Accessories"),
12562
+ 'value' => 4183
12563
+ ),array(
12564
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knife Accessories > Electric Knife Replacement Blades"),
12565
+ 'value' => 4184
12566
+ ),array(
12567
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Electric Knives"),
12568
+ 'value' => 4185
12569
+ ),array(
12570
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Flour Sifters"),
12571
+ 'value' => 4186
12572
+ ),array(
12573
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers"),
12574
+ 'value' => 4187
12575
+ ),array(
12576
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Lobster & Crab Crackers"),
12577
+ 'value' => 4188
12578
+ ),array(
12579
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Nutcrackers"),
12580
+ 'value' => 4189
12581
+ ),array(
12582
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Crackers > Nutcrackers > Decorative Nutcrackers"),
12583
+ 'value' => 4190
12584
+ ),array(
12585
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Cutters & Wedgers"),
12586
+ 'value' => 4191
12587
+ ),array(
12588
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Dispensers"),
12589
+ 'value' => 4192
12590
+ ),array(
12591
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Graters & Zesters"),
12592
+ 'value' => 4193
12593
+ ),array(
12594
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Peelers & Corers"),
12595
+ 'value' => 4194
12596
+ ),array(
12597
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Steaming Bags"),
12598
+ 'value' => 4195
12599
+ ),array(
12600
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Food Sticks & Skewers"),
12601
+ 'value' => 4196
12602
+ ),array(
12603
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Garlic Presses"),
12604
+ 'value' => 4197
12605
+ ),array(
12606
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Gelatin Molds"),
12607
+ 'value' => 4198
12608
+ ),array(
12609
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ice Cube Trays"),
12610
+ 'value' => 4199
12611
+ ),array(
12612
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ice Pop Molds"),
12613
+ 'value' => 4200
12614
+ ),array(
12615
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Jerky Guns"),
12616
+ 'value' => 4201
12617
+ ),array(
12618
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Knives"),
12619
+ 'value' => 4202
12620
+ ),array(
12621
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Molds"),
12622
+ 'value' => 4203
12623
+ ),array(
12624
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers"),
12625
+ 'value' => 4204
12626
+ ),array(
12627
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Can Organizers"),
12628
+ 'value' => 4205
12629
+ ),array(
12630
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Drinkware Racks"),
12631
+ 'value' => 4206
12632
+ ),array(
12633
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Cabinet Organizers"),
12634
+ 'value' => 4207
12635
+ ),array(
12636
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Storage Carousels"),
12637
+ 'value' => 4208
12638
+ ),array(
12639
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Kitchen Utensil Holders"),
12640
+ 'value' => 4209
12641
+ ),array(
12642
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Knife Blocks & Holders"),
12643
+ 'value' => 4210
12644
+ ),array(
12645
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Napkin Holders & Dispensers"),
12646
+ 'value' => 4211
12647
+ ),array(
12648
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Paper Towel Holders & Dispensers"),
12649
+ 'value' => 4212
12650
+ ),array(
12651
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Pot Racks"),
12652
+ 'value' => 4213
12653
+ ),array(
12654
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Single Serve Beverage Organizers"),
12655
+ 'value' => 4214
12656
+ ),array(
12657
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Spice Organizers"),
12658
+ 'value' => 4215
12659
+ ),array(
12660
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Straw Holders & Dispensers"),
12661
+ 'value' => 4216
12662
+ ),array(
12663
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Sugar Caddies"),
12664
+ 'value' => 4217
12665
+ ),array(
12666
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Toothpick Holders & Dispensers"),
12667
+ 'value' => 4218
12668
+ ),array(
12669
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Organizers > Utensil & Flatware Trays"),
12670
+ 'value' => 4219
12671
+ ),array(
12672
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scales"),
12673
+ 'value' => 4220
12674
+ ),array(
12675
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers"),
12676
+ 'value' => 4221
12677
+ ),array(
12678
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Bench Scrapers"),
12679
+ 'value' => 4222
12680
+ ),array(
12681
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Bowl Scrapers"),
12682
+ 'value' => 4223
12683
+ ),array(
12684
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Scrapers > Grill Scrapers"),
12685
+ 'value' => 4224
12686
+ ),array(
12687
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Shears"),
12688
+ 'value' => 4225
12689
+ ),array(
12690
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Slicers"),
12691
+ 'value' => 4226
12692
+ ),array(
12693
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Slicers > Bread Slicers"),
12694
+ 'value' => 4227
12695
+ ),array(
12696
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Slicers > Cheese Slicers"),
12697
+ 'value' => 4228
12698
+ ),array(
12699
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Slicers > Egg Slicers"),
12700
+ 'value' => 4229
12701
+ ),array(
12702
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Slicers > Mandoline Slicers"),
12703
+ 'value' => 4230
12704
+ ),array(
12705
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Kitchen Utensil Sets"),
12706
+ 'value' => 4231
12707
+ ),array(
12708
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ladles"),
12709
+ 'value' => 4232
12710
+ ),array(
12711
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mashers"),
12712
+ 'value' => 4233
12713
+ ),array(
12714
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Measuring Cups & Spoons"),
12715
+ 'value' => 4234
12716
+ ),array(
12717
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Meat Tenderizers"),
12718
+ 'value' => 4235
12719
+ ),array(
12720
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mixing Bowls"),
12721
+ 'value' => 4236
12722
+ ),array(
12723
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Mortars & Pestles"),
12724
+ 'value' => 4237
12725
+ ),array(
12726
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oil & Vinegar Dispensers"),
12727
+ 'value' => 4238
12728
+ ),array(
12729
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oven Bags"),
12730
+ 'value' => 4239
12731
+ ),array(
12732
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Oven Mitts & Pot Holders"),
12733
+ 'value' => 4240
12734
+ ),array(
12735
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pasta Molds & Stamps"),
12736
+ 'value' => 4241
12737
+ ),array(
12738
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pastry Blenders"),
12739
+ 'value' => 4242
12740
+ ),array(
12741
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pastry Cloths"),
12742
+ 'value' => 4243
12743
+ ),array(
12744
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pizza Cutter Accessories"),
12745
+ 'value' => 4244
12746
+ ),array(
12747
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Pizza Cutters"),
12748
+ 'value' => 4245
12749
+ ),array(
12750
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Ricers"),
12751
+ 'value' => 4246
12752
+ ),array(
12753
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories"),
12754
+ 'value' => 4247
12755
+ ),array(
12756
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories > Rolling Pin Covers & Sleeves"),
12757
+ 'value' => 4248
12758
+ ),array(
12759
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pin Accessories > Rolling Pin Rings"),
12760
+ 'value' => 4249
12761
+ ),array(
12762
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Rolling Pins"),
12763
+ 'value' => 4250
12764
+ ),array(
12765
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Salad Dressing Mixers & Shakers"),
12766
+ 'value' => 4251
12767
+ ),array(
12768
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Salad Spinners"),
12769
+ 'value' => 4252
12770
+ ),array(
12771
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops"),
12772
+ 'value' => 4253
12773
+ ),array(
12774
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Ice Cream Scoops"),
12775
+ 'value' => 4254
12776
+ ),array(
12777
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Ice Scoops"),
12778
+ 'value' => 4255
12779
+ ),array(
12780
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Scoops > Melon Ballers"),
12781
+ 'value' => 4256
12782
+ ),array(
12783
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sink Caddies"),
12784
+ 'value' => 4257
12785
+ ),array(
12786
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sink Mats & Grids"),
12787
+ 'value' => 4258
12788
+ ),array(
12789
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Slotted Spoons"),
12790
+ 'value' => 4259
12791
+ ),array(
12792
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spatulas"),
12793
+ 'value' => 4260
12794
+ ),array(
12795
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Spoon Rests"),
12796
+ 'value' => 4261
12797
+ ),array(
12798
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sugar Dispensers"),
12799
+ 'value' => 4262
12800
+ ),array(
12801
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Sushi Mats"),
12802
+ 'value' => 4263
12803
+ ),array(
12804
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Tea Strainers"),
12805
+ 'value' => 4264
12806
+ ),array(
12807
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Tongs"),
12808
+ 'value' => 4265
12809
+ ),array(
12810
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Kitchen Tools & Utensils > Whisks"),
12811
+ 'value' => 4266
12812
+ ),array(
12813
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware"),
12814
+ 'value' => 4267
12815
+ ),array(
12816
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Coffee & Tea Sets"),
12817
+ 'value' => 4268
12818
+ ),array(
12819
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Coffee Servers & Tea Pots"),
12820
+ 'value' => 4269
12821
+ ),array(
12822
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Dinnerware"),
12823
+ 'value' => 4270
12824
+ ),array(
12825
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Bowls"),
12826
+ 'value' => 4271
12827
+ ),array(
12828
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Dinnerware Sets"),
12829
+ 'value' => 4272
12830
+ ),array(
12831
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Dinnerware > Plates"),
12832
+ 'value' => 4273
12833
+ ),array(
12834
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware"),
12835
+ 'value' => 4274
12836
+ ),array(
12837
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Beer Glasses"),
12838
+ 'value' => 4275
12839
+ ),array(
12840
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Beer Glasses > Pilsner Glasses"),
12841
+ 'value' => 4276
12842
+ ),array(
12843
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Beer Glasses > Pint Glasses"),
12844
+ 'value' => 4277
12845
+ ),array(
12846
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Beer Glasses > Tankards & Beer Steins"),
12847
+ 'value' => 4278
12848
+ ),array(
12849
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Cups"),
12850
+ 'value' => 4279
12851
+ ),array(
12852
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Cups > Coffee Cups"),
12853
+ 'value' => 4280
12854
+ ),array(
12855
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Cups > Tea Cups"),
12856
+ 'value' => 4281
12857
+ ),array(
12858
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Coffee & Tea Saucers"),
12859
+ 'value' => 4282
12860
+ ),array(
12861
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Drinkware Sets"),
12862
+ 'value' => 4283
12863
+ ),array(
12864
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Mugs"),
12865
+ 'value' => 4284
12866
+ ),array(
12867
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Shot Glasses"),
12868
+ 'value' => 4285
12869
+ ),array(
12870
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware"),
12871
+ 'value' => 4286
12872
+ ),array(
12873
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware > Brandy Snifters"),
12874
+ 'value' => 4287
12875
+ ),array(
12876
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware > Champagne Glasses"),
12877
+ 'value' => 4288
12878
+ ),array(
12879
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware > Margarita Glasses"),
12880
+ 'value' => 4289
12881
+ ),array(
12882
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware > Martini Glasses"),
12883
+ 'value' => 4290
12884
+ ),array(
12885
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Stemware > Wine Glasses"),
12886
+ 'value' => 4291
12887
+ ),array(
12888
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Tumblers"),
12889
+ 'value' => 4292
12890
+ ),array(
12891
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Tumblers > Highball Glasses"),
12892
+ 'value' => 4293
12893
+ ),array(
12894
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Drinkware > Tumblers > Lowball Glasses"),
12895
+ 'value' => 4294
12896
+ ),array(
12897
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware"),
12898
+ 'value' => 4295
12899
+ ),array(
12900
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopstick Accessories"),
12901
+ 'value' => 4296
12902
+ ),array(
12903
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopstick Accessories > Chopstick Connectors"),
12904
+ 'value' => 4297
12905
+ ),array(
12906
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopstick Accessories > Chopstick Rests"),
12907
+ 'value' => 4298
12908
+ ),array(
12909
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Chopsticks"),
12910
+ 'value' => 4299
12911
+ ),array(
12912
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Flatware Sets"),
12913
+ 'value' => 4300
12914
+ ),array(
12915
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Forks"),
12916
+ 'value' => 4301
12917
+ ),array(
12918
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Spoons"),
12919
+ 'value' => 4302
12920
+ ),array(
12921
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Flatware > Table Knives"),
12922
+ 'value' => 4303
12923
+ ),array(
12924
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Salt & Pepper Shakers"),
12925
+ 'value' => 4304
12926
+ ),array(
12927
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware"),
12928
+ 'value' => 4305
12929
+ ),array(
12930
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Butter Dishes"),
12931
+ 'value' => 4306
12932
+ ),array(
12933
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Cake Boards"),
12934
+ 'value' => 4307
12935
+ ),array(
12936
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Cake Stands"),
12937
+ 'value' => 4308
12938
+ ),array(
12939
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Egg Cups"),
12940
+ 'value' => 4309
12941
+ ),array(
12942
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Gravy Boats"),
12943
+ 'value' => 4310
12944
+ ),array(
12945
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Punch Bowls"),
12946
+ 'value' => 4311
12947
+ ),array(
12948
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Pitchers & Carafes"),
12949
+ 'value' => 4312
12950
+ ),array(
12951
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Platters"),
12952
+ 'value' => 4313
12953
+ ),array(
12954
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Serving Trays"),
12955
+ 'value' => 4314
12956
+ ),array(
12957
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Sugar Bowls & Creamers"),
12958
+ 'value' => 4315
12959
+ ),array(
12960
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware > Tureens"),
12961
+ 'value' => 4316
12962
+ ),array(
12963
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories"),
12964
+ 'value' => 4317
12965
+ ),array(
12966
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Punch Bowl Stands"),
12967
+ 'value' => 4318
12968
+ ),array(
12969
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Tureen Lids"),
12970
+ 'value' => 4319
12971
+ ),array(
12972
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Serveware Accessories > Tureen Stands"),
12973
+ 'value' => 4320
12974
+ ),array(
12975
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Kitchen & Dining > Tableware > Trivets"),
12976
+ 'value' => 4321
12977
+ ),array(
12978
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden"),
12979
+ 'value' => 4322
12980
+ ),array(
12981
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening"),
12982
+ 'value' => 4323
12983
+ ),array(
12984
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Composting"),
12985
+ 'value' => 4324
12986
+ ),array(
12987
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Composting > Compost"),
12988
+ 'value' => 4325
12989
+ ),array(
12990
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Composting > Compost Aerators"),
12991
+ 'value' => 4326
12992
+ ),array(
12993
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Composting > Composters"),
12994
+ 'value' => 4327
12995
+ ),array(
12996
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Disease Control"),
12997
+ 'value' => 4328
12998
+ ),array(
12999
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Fertilizers"),
13000
+ 'value' => 4329
13001
+ ),array(
13002
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Accessories"),
13003
+ 'value' => 4330
13004
+ ),array(
13005
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Gardening Kneeling Cushions"),
13006
+ 'value' => 4331
13007
+ ),array(
13008
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Gardening Totes"),
13009
+ 'value' => 4332
13010
+ ),array(
13011
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Accessories > Potting Benches"),
13012
+ 'value' => 4333
13013
+ ),array(
13014
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools"),
13015
+ 'value' => 4334
13016
+ ),array(
13017
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Brush Axes"),
13018
+ 'value' => 4335
13019
+ ),array(
13020
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Bulb Planting Tools"),
13021
+ 'value' => 4336
13022
+ ),array(
13023
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Cultivating Tools"),
13024
+ 'value' => 4337
13025
+ ),array(
13026
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Cultivating Tools > Garden Hoes"),
13027
+ 'value' => 4338
13028
+ ),array(
13029
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Digging Bars"),
13030
+ 'value' => 4339
13031
+ ),array(
13032
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Forks"),
13033
+ 'value' => 4340
13034
+ ),array(
13035
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Sickles"),
13036
+ 'value' => 4341
13037
+ ),array(
13038
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Gardening Trowels"),
13039
+ 'value' => 4342
13040
+ ),array(
13041
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Grass Edgers"),
13042
+ 'value' => 4343
13043
+ ),array(
13044
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Lawn & Garden Sprayers"),
13045
+ 'value' => 4344
13046
+ ),array(
13047
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Lawn Aerators"),
13048
+ 'value' => 4345
13049
+ ),array(
13050
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Machetes"),
13051
+ 'value' => 4346
13052
+ ),array(
13053
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Mattocks & Pickaxes"),
13054
+ 'value' => 4347
13055
+ ),array(
13056
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Pruning Saws"),
13057
+ 'value' => 4348
13058
+ ),array(
13059
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Pruning Shears"),
13060
+ 'value' => 4349
13061
+ ),array(
13062
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Rakes"),
13063
+ 'value' => 4350
13064
+ ),array(
13065
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Shovels & Spades"),
13066
+ 'value' => 4351
13067
+ ),array(
13068
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Spreaders"),
13069
+ 'value' => 4352
13070
+ ),array(
13071
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Wheelbarrow Parts"),
13072
+ 'value' => 4353
13073
+ ),array(
13074
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Gardening Tools > Wheelbarrows"),
13075
+ 'value' => 4354
13076
+ ),array(
13077
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Greenhouses"),
13078
+ 'value' => 4355
13079
+ ),array(
13080
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Herbicides"),
13081
+ 'value' => 4356
13082
+ ),array(
13083
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Landscape Fabric"),
13084
+ 'value' => 4357
13085
+ ),array(
13086
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Lanscape Fabric Accessories"),
13087
+ 'value' => 4358
13088
+ ),array(
13089
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Lanscape Fabric Accessories > Landscape Fabric Staples & Pins"),
13090
+ 'value' => 4359
13091
+ ),array(
13092
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Lanscape Fabric Accessories > Landscape Fabric Tape"),
13093
+ 'value' => 4360
13094
+ ),array(
13095
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Mulch"),
13096
+ 'value' => 4361
13097
+ ),array(
13098
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Plant Cages"),
13099
+ 'value' => 4362
13100
+ ),array(
13101
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Plant Stakes & Supports"),
13102
+ 'value' => 4363
13103
+ ),array(
13104
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Plant Stands"),
13105
+ 'value' => 4364
13106
+ ),array(
13107
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Pots & Planters"),
13108
+ 'value' => 4365
13109
+ ),array(
13110
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Rain Barrels"),
13111
+ 'value' => 4366
13112
+ ),array(
13113
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Gardening > Sands & Soils"),
13114
+ 'value' => 4367
13115
+ ),array(
13116
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living"),
13117
+ 'value' => 4368
13118
+ ),array(
13119
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Hammock Accessories"),
13120
+ 'value' => 4369
13121
+ ),array(
13122
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Hammocks"),
13123
+ 'value' => 4370
13124
+ ),array(
13125
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets"),
13126
+ 'value' => 4371
13127
+ ),array(
13128
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Beach Mats"),
13129
+ 'value' => 4372
13130
+ ),array(
13131
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Picnic Blankets"),
13132
+ 'value' => 4373
13133
+ ),array(
13134
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Blankets > Poncho Liners"),
13135
+ 'value' => 4374
13136
+ ),array(
13137
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures"),
13138
+ 'value' => 4375
13139
+ ),array(
13140
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopies & Gazebos"),
13141
+ 'value' => 4376
13142
+ ),array(
13143
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories"),
13144
+ 'value' => 4377
13145
+ ),array(
13146
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Enclosure Kits"),
13147
+ 'value' => 4378
13148
+ ),array(
13149
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Frames"),
13150
+ 'value' => 4379
13151
+ ),array(
13152
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy & Gazebo Tops"),
13153
+ 'value' => 4380
13154
+ ),array(
13155
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy Poles"),
13156
+ 'value' => 4381
13157
+ ),array(
13158
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Canopy & Gazebo Accessories > Canopy Weights"),
13159
+ 'value' => 4382
13160
+ ),array(
13161
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Garden Arches, Trellises, Arbors & Pergolas"),
13162
+ 'value' => 4383
13163
+ ),array(
13164
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Garden Bridges"),
13165
+ 'value' => 4384
13166
+ ),array(
13167
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Structures > Sheds & Storage"),
13168
+ 'value' => 4385
13169
+ ),array(
13170
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories"),
13171
+ 'value' => 4386
13172
+ ),array(
13173
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella & Sunshade Fabric"),
13174
+ 'value' => 4387
13175
+ ),array(
13176
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Bases"),
13177
+ 'value' => 4388
13178
+ ),array(
13179
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Covers"),
13180
+ 'value' => 4389
13181
+ ),array(
13182
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrella & Sunshade Accessories > Outdoor Umbrella Lights"),
13183
+ 'value' => 4390
13184
+ ),array(
13185
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Outdoor Umbrellas & Sunshades"),
13186
+ 'value' => 4391
13187
+ ),array(
13188
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Living > Porch Swings"),
13189
+ 'value' => 4392
13190
+ ),array(
13191
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment"),
13192
+ 'value' => 4393
13193
+ ),array(
13194
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Chainsaws"),
13195
+ 'value' => 4394
13196
+ ),array(
13197
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Hedge Trimmers"),
13198
+ 'value' => 4395
13199
+ ),array(
13200
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers"),
13201
+ 'value' => 4396
13202
+ ),array(
13203
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Riding Mowers"),
13204
+ 'value' => 4397
13205
+ ),array(
13206
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Robotic Mowers"),
13207
+ 'value' => 4398
13208
+ ),array(
13209
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Tow-Behind Mowers"),
13210
+ 'value' => 4399
13211
+ ),array(
13212
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Mowers > Walk-Behind Mowers"),
13213
+ 'value' => 4400
13214
+ ),array(
13215
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Lawn Vacuums"),
13216
+ 'value' => 4401
13217
+ ),array(
13218
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Leaf Blowers"),
13219
+ 'value' => 4402
13220
+ ),array(
13221
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Outdoor Power Equipment Heads"),
13222
+ 'value' => 4403
13223
+ ),array(
13224
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Outdoor Power Equipment Sets"),
13225
+ 'value' => 4404
13226
+ ),array(
13227
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Power Tillers & Cultivators"),
13228
+ 'value' => 4405
13229
+ ),array(
13230
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Pressure Washers"),
13231
+ 'value' => 4406
13232
+ ),array(
13233
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Snow Blowers"),
13234
+ 'value' => 4407
13235
+ ),array(
13236
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Tractors"),
13237
+ 'value' => 4408
13238
+ ),array(
13239
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment > Weed Trimmers"),
13240
+ 'value' => 4409
13241
+ ),array(
13242
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories"),
13243
+ 'value' => 4410
13244
+ ),array(
13245
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories"),
13246
+ 'value' => 4411
13247
+ ),array(
13248
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories > Chainsaw Bars"),
13249
+ 'value' => 4412
13250
+ ),array(
13251
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Chainsaw Accessories > Chainsaw Chains"),
13252
+ 'value' => 4413
13253
+ ),array(
13254
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Grass Edger Accessories"),
13255
+ 'value' => 4414
13256
+ ),array(
13257
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Grass Edger Accessories > Grass Edger Attachments"),
13258
+ 'value' => 4415
13259
+ ),array(
13260
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Hedge Trimmer Accessories"),
13261
+ 'value' => 4416
13262
+ ),array(
13263
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Hedge Trimmer Accessories > Hedge Trimmer Attachments"),
13264
+ 'value' => 4417
13265
+ ),array(
13266
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories"),
13267
+ 'value' => 4418
13268
+ ),array(
13269
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Brush Mower Attachments"),
13270
+ 'value' => 4419
13271
+ ),array(
13272
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Attachments"),
13273
+ 'value' => 4420
13274
+ ),array(
13275
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Bags"),
13276
+ 'value' => 4421
13277
+ ),array(
13278
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Belts"),
13279
+ 'value' => 4422
13280
+ ),array(
13281
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Blades"),
13282
+ 'value' => 4423
13283
+ ),array(
13284
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Covers"),
13285
+ 'value' => 4424
13286
+ ),array(
13287
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Pulleys & Idlers"),
13288
+ 'value' => 4425
13289
+ ),array(
13290
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Tires"),
13291
+ 'value' => 4426
13292
+ ),array(
13293
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Mower Wheels"),
13294
+ 'value' => 4427
13295
+ ),array(
13296
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Lawn Mower Accessories > Lawn Sweepers"),
13297
+ 'value' => 4428
13298
+ ),array(
13299
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Leaf Blower Accessories"),
13300
+ 'value' => 4429
13301
+ ),array(
13302
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Leaf Blower Accessories > Leaf Blower Extension Tubes"),
13303
+ 'value' => 4430
13304
+ ),array(
13305
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Outdoor Power Equipment Batteries"),
13306
+ 'value' => 4431
13307
+ ),array(
13308
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Outdoor Power Equipment Batteries > Hedge Trimmer Batteries"),
13309
+ 'value' => 4432
13310
+ ),array(
13311
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Outdoor Power Equipment Batteries > Lawn Mower Batteries"),
13312
+ 'value' => 4433
13313
+ ),array(
13314
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Outdoor Power Equipment Batteries > Weed Trimmer Batteries"),
13315
+ 'value' => 4434
13316
+ ),array(
13317
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Pressure Washer Accessories"),
13318
+ 'value' => 4435
13319
+ ),array(
13320
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Snow Blower Accessories"),
13321
+ 'value' => 4436
13322
+ ),array(
13323
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Tractor Parts & Accessories"),
13324
+ 'value' => 4437
13325
+ ),array(
13326
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories"),
13327
+ 'value' => 4438
13328
+ ),array(
13329
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories > Weed Trimmer Attachments"),
13330
+ 'value' => 4439
13331
+ ),array(
13332
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories > Weed Trimmer Blades & Spools"),
13333
+ 'value' => 4440
13334
+ ),array(
13335
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Outdoor Power Equipment Accessories > Weed Trimmer Accessories > Weed Trimmer Spool Covers"),
13336
+ 'value' => 4441
13337
+ ),array(
13338
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Snow Removal"),
13339
+ 'value' => 4442
13340
+ ),array(
13341
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Snow Removal > Ice Scrapers"),
13342
+ 'value' => 4443
13343
+ ),array(
13344
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Snow Removal > Snow Shovels"),
13345
+ 'value' => 4444
13346
+ ),array(
13347
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation"),
13348
+ 'value' => 4445
13349
+ ),array(
13350
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hose Fittings & Valves"),
13351
+ 'value' => 4446
13352
+ ),array(
13353
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hose Spray Nozzles"),
13354
+ 'value' => 4447
13355
+ ),array(
13356
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Garden Hoses"),
13357
+ 'value' => 4448
13358
+ ),array(
13359
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories"),
13360
+ 'value' => 4449
13361
+ ),array(
13362
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories > Sprinkler Controls"),
13363
+ 'value' => 4450
13364
+ ),array(
13365
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinkler Accessories > Sprinkler Valves"),
13366
+ 'value' => 4451
13367
+ ),array(
13368
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinklers & Sprinkler Heads"),
13369
+ 'value' => 4452
13370
+ ),array(
13371
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinklers & Sprinkler Heads > Sprinkler Heads"),
13372
+ 'value' => 4453
13373
+ ),array(
13374
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Sprinklers & Sprinkler Heads > Sprinklers"),
13375
+ 'value' => 4454
13376
+ ),array(
13377
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lawn & Garden > Watering & Irrigation > Watering Cans"),
13378
+ 'value' => 4455
13379
+ ),array(
13380
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting"),
13381
+ 'value' => 4456
13382
+ ),array(
13383
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Emergency Lighting"),
13384
+ 'value' => 4457
13385
+ ),array(
13386
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Flood & Spot Lights"),
13387
+ 'value' => 4458
13388
+ ),array(
13389
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lamps"),
13390
+ 'value' => 4459
13391
+ ),array(
13392
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lamps > Floor Lamps"),
13393
+ 'value' => 4460
13394
+ ),array(
13395
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lamps > Table Lamps"),
13396
+ 'value' => 4461
13397
+ ),array(
13398
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Landscape Lighting"),
13399
+ 'value' => 4462
13400
+ ),array(
13401
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Landscape Lighting > Deck Lights"),
13402
+ 'value' => 4463
13403
+ ),array(
13404
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Landscape Lighting > Landscape Lanterns & Torches"),
13405
+ 'value' => 4464
13406
+ ),array(
13407
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Landscape Lighting > Landscape Pathway Lighting"),
13408
+ 'value' => 4465
13409
+ ),array(
13410
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Landscape Lighting > Landscape Well Lights"),
13411
+ 'value' => 4466
13412
+ ),array(
13413
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Light Bulbs"),
13414
+ 'value' => 4467
13415
+ ),array(
13416
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Light Bulbs > Compact Fluorescent Lamps"),
13417
+ 'value' => 4468
13418
+ ),array(
13419
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Light Bulbs > Fluorescent Tubes"),
13420
+ 'value' => 4469
13421
+ ),array(
13422
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Light Bulbs > Incandescent Light Bulbs"),
13423
+ 'value' => 4470
13424
+ ),array(
13425
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Light Bulbs > LED Light Bulbs"),
13426
+ 'value' => 4471
13427
+ ),array(
13428
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Light Ropes & Strings"),
13429
+ 'value' => 4472
13430
+ ),array(
13431
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lighting Fixtures"),
13432
+ 'value' => 4473
13433
+ ),array(
13434
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lighting Fixtures > Ceiling Light Fixtures"),
13435
+ 'value' => 4474
13436
+ ),array(
13437
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lighting Fixtures > Chandeliers"),
13438
+ 'value' => 4475
13439
+ ),array(
13440
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lighting Fixtures > Under Cabinet Light Fixtures"),
13441
+ 'value' => 4476
13442
+ ),array(
13443
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lighting Fixtures > Wall Light Fixtures"),
13444
+ 'value' => 4477
13445
+ ),array(
13446
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Lighting Fixtures > Wall Light Fixtures > Wall Sconces"),
13447
+ 'value' => 4478
13448
+ ),array(
13449
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Night Lights"),
13450
+ 'value' => 4479
13451
+ ),array(
13452
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Picture Lights"),
13453
+ 'value' => 4480
13454
+ ),array(
13455
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Track Lighting"),
13456
+ 'value' => 4481
13457
+ ),array(
13458
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Track Lighting > Track Lighting Accessories"),
13459
+ 'value' => 4482
13460
+ ),array(
13461
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Track Lighting > Track Lighting Fixtures"),
13462
+ 'value' => 4483
13463
+ ),array(
13464
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting > Track Lighting > Track Lighting Rails"),
13465
+ 'value' => 4484
13466
+ ),array(
13467
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting Accessories"),
13468
+ 'value' => 4485
13469
+ ),array(
13470
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting Accessories > Lamp Post Bases"),
13471
+ 'value' => 4486
13472
+ ),array(
13473
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting Accessories > Lamp Post Mounts"),
13474
+ 'value' => 4487
13475
+ ),array(
13476
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting Accessories > Lamp Shades"),
13477
+ 'value' => 4488
13478
+ ),array(
13479
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Lighting Accessories > Lighting Timers"),
13480
+ 'value' => 4489
13481
+ ),array(
13482
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding"),
13483
+ 'value' => 4490
13484
+ ),array(
13485
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding"),
13486
+ 'value' => 4491
13487
+ ),array(
13488
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Bed Sheets"),
13489
+ 'value' => 4492
13490
+ ),array(
13491
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Bedskirts"),
13492
+ 'value' => 4493
13493
+ ),array(
13494
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Blankets"),
13495
+ 'value' => 4494
13496
+ ),array(
13497
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Blankets > Electric Blankets"),
13498
+ 'value' => 4495
13499
+ ),array(
13500
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Blankets > Throw Blankets"),
13501
+ 'value' => 4496
13502
+ ),array(
13503
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Comforters & Comforter Sets"),
13504
+ 'value' => 4497
13505
+ ),array(
13506
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Duvet Covers"),
13507
+ 'value' => 4498
13508
+ ),array(
13509
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Mattress Protectors"),
13510
+ 'value' => 4499
13511
+ ),array(
13512
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Mattress Protectors > Mattress Encasements"),
13513
+ 'value' => 4500
13514
+ ),array(
13515
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Mattress Protectors > Mattress Pads"),
13516
+ 'value' => 4501
13517
+ ),array(
13518
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Nap Mats"),
13519
+ 'value' => 4502
13520
+ ),array(
13521
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Pillowcases & Shams"),
13522
+ 'value' => 4503
13523
+ ),array(
13524
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Pillows"),
13525
+ 'value' => 4504
13526
+ ),array(
13527
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Pillows > Body Pillows"),
13528
+ 'value' => 4505
13529
+ ),array(
13530
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Bedding > Quilts & Quilt Sets"),
13531
+ 'value' => 4506
13532
+ ),array(
13533
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linen Accessories"),
13534
+ 'value' => 4507
13535
+ ),array(
13536
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linen Accessories > Tablecloth Clips & Weights"),
13537
+ 'value' => 4508
13538
+ ),array(
13539
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linens"),
13540
+ 'value' => 4509
13541
+ ),array(
13542
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linens > Cloth Napkins"),
13543
+ 'value' => 4510
13544
+ ),array(
13545
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linens > Doilies"),
13546
+ 'value' => 4511
13547
+ ),array(
13548
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linens > Placemats"),
13549
+ 'value' => 4512
13550
+ ),array(
13551
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linens > Table Runners"),
13552
+ 'value' => 4513
13553
+ ),array(
13554
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linens > Table Skirts"),
13555
+ 'value' => 4514
13556
+ ),array(
13557
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Table Linens > Tablecloths"),
13558
+ 'value' => 4515
13559
+ ),array(
13560
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Towels"),
13561
+ 'value' => 4516
13562
+ ),array(
13563
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Towels > Bath Towels & Washcloths"),
13564
+ 'value' => 4517
13565
+ ),array(
13566
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Towels > Beach Towels"),
13567
+ 'value' => 4518
13568
+ ),array(
13569
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Linens & Bedding > Towels > Kitchen Towels"),
13570
+ 'value' => 4519
13571
+ ),array(
13572
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Parasols & Rain Umbrellas"),
13573
+ 'value' => 4520
13574
+ ),array(
13575
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants"),
13576
+ 'value' => 4521
13577
+ ),array(
13578
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants > Aquatic Plants"),
13579
+ 'value' => 4522
13580
+ ),array(
13581
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants > Flowers"),
13582
+ 'value' => 4523
13583
+ ),array(
13584
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants > Indoor & Outdoor Plants"),
13585
+ 'value' => 4524
13586
+ ),array(
13587
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants > Indoor & Outdoor Plants > Indoor Plants"),
13588
+ 'value' => 4525
13589
+ ),array(
13590
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants > Indoor & Outdoor Plants > Outdoor Plants"),
13591
+ 'value' => 4526
13592
+ ),array(
13593
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants > Seeds"),
13594
+ 'value' => 4527
13595
+ ),array(
13596
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Plants > Trees"),
13597
+ 'value' => 4528
13598
+ ),array(
13599
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa"),
13600
+ 'value' => 4529
13601
+ ),array(
13602
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories"),
13603
+ 'value' => 4530
13604
+ ),array(
13605
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Child Swimming Aids"),
13606
+ 'value' => 4531
13607
+ ),array(
13608
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Diving Boards"),
13609
+ 'value' => 4532
13610
+ ),array(
13611
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool & Spa Filters"),
13612
+ 'value' => 4533
13613
+ ),array(
13614
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Brushes"),
13615
+ 'value' => 4534
13616
+ ),array(
13617
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cleaner Hoses"),
13618
+ 'value' => 4535
13619
+ ),array(
13620
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Cleaners & Chemicals"),
13621
+ 'value' => 4536
13622
+ ),array(
13623
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Covers"),
13624
+ 'value' => 4537
13625
+ ),array(
13626
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Deck Kits"),
13627
+ 'value' => 4538
13628
+ ),array(
13629
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Floats & Loungers"),
13630
+ 'value' => 4539
13631
+ ),array(
13632
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Floats & Loungers > Baby Floats"),
13633
+ 'value' => 4540
13634
+ ),array(
13635
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Heaters"),
13636
+ 'value' => 4541
13637
+ ),array(
13638
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Ladders"),
13639
+ 'value' => 4542
13640
+ ),array(
13641
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Skimmers"),
13642
+ 'value' => 4543
13643
+ ),array(
13644
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Sweeps & Vacuums"),
13645
+ 'value' => 4544
13646
+ ),array(
13647
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Toys"),
13648
+ 'value' => 4545
13649
+ ),array(
13650
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Pool & Spa Accessories > Pool Water Slides"),
13651
+ 'value' => 4546
13652
+ ),array(
13653
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Saunas"),
13654
+ 'value' => 4547
13655
+ ),array(
13656
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Spas"),
13657
+ 'value' => 4548
13658
+ ),array(
13659
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Pool & Spa > Swimming Pools"),
13660
+ 'value' => 4549
13661
+ ),array(
13662
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories"),
13663
+ 'value' => 4550
13664
+ ),array(
13665
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Ashtrays"),
13666
+ 'value' => 4551
13667
+ ),array(
13668
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Cigar Cases"),
13669
+ 'value' => 4552
13670
+ ),array(
13671
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Cigar Cutters & Punches"),
13672
+ 'value' => 4553
13673
+ ),array(
13674
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Cigarette Cases"),
13675
+ 'value' => 4554
13676
+ ),array(
13677
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Humidor Accessories"),
13678
+ 'value' => 4555
13679
+ ),array(
13680
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Humidors"),
13681
+ 'value' => 4556
13682
+ ),array(
13683
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Lighters"),
13684
+ 'value' => 4557
13685
+ ),array(
13686
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Smoking Accessories > Matches"),
13687
+ 'value' => 4558
13688
+ ),array(
13689
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Umbrella Sleeves & Cases"),
13690
+ 'value' => 4559
13691
+ ),array(
13692
+ 'label' => Mage::helper('richsnippet')->__("Home & Garden > Wood Stoves"),
13693
+ 'value' => 4560
13694
+ ),array(
13695
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags"),
13696
+ 'value' => 4561
13697
+ ),array(
13698
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Backpack Accessories"),
13699
+ 'value' => 4562
13700
+ ),array(
13701
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Backpack Accessories > Backpack Covers"),
13702
+ 'value' => 4563
13703
+ ),array(
13704
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Backpacks"),
13705
+ 'value' => 4564
13706
+ ),array(
13707
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Business Bags"),
13708
+ 'value' => 4565
13709
+ ),array(
13710
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Business Bags > Briefcases"),
13711
+ 'value' => 4566
13712
+ ),array(
13713
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Business Bags > Electronics Bags & Cases"),
13714
+ 'value' => 4567
13715
+ ),array(
13716
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Business Bags > Electronics Bags & Cases > Computer Skins & Sleeves"),
13717
+ 'value' => 4568
13718
+ ),array(
13719
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Business Bags > Electronics Bags & Cases > Laptop Bags & Cases"),
13720
+ 'value' => 4569
13721
+ ),array(
13722
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Business Bags > Electronics Bags & Cases > Tablet Computer Bags & Cases"),
13723
+ 'value' => 4570
13724
+ ),array(
13725
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Business Bags > Garment Bags"),
13726
+ 'value' => 4571
13727
+ ),array(
13728
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Cosmetic & Toiletry Bags"),
13729
+ 'value' => 4572
13730
+ ),array(
13731
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Diaper Bags"),
13732
+ 'value' => 4573
13733
+ ),array(
13734
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Duffel Bags"),
13735
+ 'value' => 4574
13736
+ ),array(
13737
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Fanny Packs"),
13738
+ 'value' => 4575
13739
+ ),array(
13740
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Luggage Accessories"),
13741
+ 'value' => 4576
13742
+ ),array(
13743
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Luggage Accessories > Luggage Straps"),
13744
+ 'value' => 4577
13745
+ ),array(
13746
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Luggage Accessories > Luggage Tags"),
13747
+ 'value' => 4578
13748
+ ),array(
13749
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Luggage Accessories > Packing Organizers"),
13750
+ 'value' => 4579
13751
+ ),array(
13752
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Luggage Accessories > Travel Bottles & Containers"),
13753
+ 'value' => 4580
13754
+ ),array(
13755
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Luggage Accessories > Travel Pouches"),
13756
+ 'value' => 4581
13757
+ ),array(
13758
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Messenger Bags"),
13759
+ 'value' => 4582
13760
+ ),array(
13761
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Shopping Totes"),
13762
+ 'value' => 4583
13763
+ ),array(
13764
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Suitcases"),
13765
+ 'value' => 4584
13766
+ ),array(
13767
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Suitcases > Carry-On Luggage"),
13768
+ 'value' => 4585
13769
+ ),array(
13770
+ 'label' => Mage::helper('richsnippet')->__("Luggage & Bags > Train Cases"),
13771
+ 'value' => 4586
13772
+ ),array(
13773
+ 'label' => Mage::helper('richsnippet')->__("Mature"),
13774
+ 'value' => 4587
13775
+ ),array(
13776
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic"),
13777
+ 'value' => 4588
13778
+ ),array(
13779
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Erotic Books"),
13780
+ 'value' => 4589
13781
+ ),array(
13782
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Erotic Books > Erotic Comics"),
13783
+ 'value' => 4590
13784
+ ),array(
13785
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Erotic Clothing"),
13786
+ 'value' => 4591
13787
+ ),array(
13788
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Erotic DVDs & Videos"),
13789
+ 'value' => 4592
13790
+ ),array(
13791
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Erotic Food & Edibles"),
13792
+ 'value' => 4593
13793
+ ),array(
13794
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Erotic Games"),
13795
+ 'value' => 4594
13796
+ ),array(
13797
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Erotic Magazines"),
13798
+ 'value' => 4595
13799
+ ),array(
13800
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Pole Dancing Kits"),
13801
+ 'value' => 4596
13802
+ ),array(
13803
+ 'label' => Mage::helper('richsnippet')->__("Mature > Erotic > Sex Toys"),
13804
+ 'value' => 4597
13805
+ ),array(
13806
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons"),
13807
+ 'value' => 4598
13808
+ ),array(
13809
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Brass Knuckles"),
13810
+ 'value' => 4599
13811
+ ),array(
13812
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Clubs"),
13813
+ 'value' => 4600
13814
+ ),array(
13815
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Combat Knives"),
13816
+ 'value' => 4601
13817
+ ),array(
13818
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories"),
13819
+ 'value' => 4602
13820
+ ),array(
13821
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Ammunition"),
13822
+ 'value' => 4603
13823
+ ),array(
13824
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Ammunition Belts"),
13825
+ 'value' => 4604
13826
+ ),array(
13827
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Ammunition Boxes"),
13828
+ 'value' => 4605
13829
+ ),array(
13830
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Gun Bags & Cases"),
13831
+ 'value' => 4606
13832
+ ),array(
13833
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Gun Grips"),
13834
+ 'value' => 4607
13835
+ ),array(
13836
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Gun Holsters"),
13837
+ 'value' => 4608
13838
+ ),array(
13839
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Gun Lights"),
13840
+ 'value' => 4609
13841
+ ),array(
13842
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Gun Accessories > Gun Rails"),
13843
+ 'value' => 4610
13844
+ ),array(
13845
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Guns"),
13846
+ 'value' => 4611
13847
+ ),array(
13848
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Mace & Pepper Spray"),
13849
+ 'value' => 4612
13850
+ ),array(
13851
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Nunchucks"),
13852
+ 'value' => 4613
13853
+ ),array(
13854
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Spears"),
13855
+ 'value' => 4614
13856
+ ),array(
13857
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Staff & Stick Weapons"),
13858
+ 'value' => 4615
13859
+ ),array(
13860
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Stun Guns & Tasers"),
13861
+ 'value' => 4616
13862
+ ),array(
13863
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Swords"),
13864
+ 'value' => 4617
13865
+ ),array(
13866
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Throwing Stars"),
13867
+ 'value' => 4618
13868
+ ),array(
13869
+ 'label' => Mage::helper('richsnippet')->__("Mature > Weapons > Whips"),
13870
+ 'value' => 4619
13871
+ ),array(
13872
+ 'label' => Mage::helper('richsnippet')->__("Media"),
13873
+ 'value' => 4620
13874
+ ),array(
13875
+ 'label' => Mage::helper('richsnippet')->__("Media > Books"),
13876
+ 'value' => 4621
13877
+ ),array(
13878
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction"),
13879
+ 'value' => 4622
13880
+ ),array(
13881
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction > Children's Books"),
13882
+ 'value' => 4623
13883
+ ),array(
13884
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction > Comics"),
13885
+ 'value' => 4624
13886
+ ),array(
13887
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction > Horror Novels"),
13888
+ 'value' => 4625
13889
+ ),array(
13890
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction > Literature"),
13891
+ 'value' => 4626
13892
+ ),array(
13893
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction > Mystery Novels"),
13894
+ 'value' => 4627
13895
+ ),array(
13896
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction > Romance Novels"),
13897
+ 'value' => 4628
13898
+ ),array(
13899
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Fiction > Science Fiction & Fantasy Novels"),
13900
+ 'value' => 4629
13901
+ ),array(
13902
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction"),
13903
+ 'value' => 4630
13904
+ ),array(
13905
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Animal & Nature Books"),
13906
+ 'value' => 4631
13907
+ ),array(
13908
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Architecture Books"),
13909
+ 'value' => 4632
13910
+ ),array(
13911
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Art Books"),
13912
+ 'value' => 4633
13913
+ ),array(
13914
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Biographies"),
13915
+ 'value' => 4634
13916
+ ),array(
13917
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Body, Mind & Spirit Books"),
13918
+ 'value' => 4635
13919
+ ),array(
13920
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Business & Economics Books"),
13921
+ 'value' => 4636
13922
+ ),array(
13923
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Coloring Books"),
13924
+ 'value' => 4637
13925
+ ),array(
13926
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Computer Books"),
13927
+ 'value' => 4638
13928
+ ),array(
13929
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Cooking Books"),
13930
+ 'value' => 4639
13931
+ ),array(
13932
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Craft, Hobby & Activity Books"),
13933
+ 'value' => 4640
13934
+ ),array(
13935
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Drama Books"),
13936
+ 'value' => 4641
13937
+ ),array(
13938
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Education Books"),
13939
+ 'value' => 4642
13940
+ ),array(
13941
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Education Books > Foreign Language Books"),
13942
+ 'value' => 4643
13943
+ ),array(
13944
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Education Books > Study Aids"),
13945
+ 'value' => 4644
13946
+ ),array(
13947
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Family Relationship Books"),
13948
+ 'value' => 4645
13949
+ ),array(
13950
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Game Books"),
13951
+ 'value' => 4646
13952
+ ),array(
13953
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Gardening Books"),
13954
+ 'value' => 4647
13955
+ ),array(
13956
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Health & Fitness Books"),
13957
+ 'value' => 4648
13958
+ ),array(
13959
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > History Books"),
13960
+ 'value' => 4649
13961
+ ),array(
13962
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Home Improvement Books"),
13963
+ 'value' => 4650
13964
+ ),array(
13965
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Humor Books"),
13966
+ 'value' => 4651
13967
+ ),array(
13968
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Juvenile Non-Fiction"),
13969
+ 'value' => 4652
13970
+ ),array(
13971
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Language Arts Books"),
13972
+ 'value' => 4653
13973
+ ),array(
13974
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Law Books"),
13975
+ 'value' => 4654
13976
+ ),array(
13977
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Literary Books"),
13978
+ 'value' => 4655
13979
+ ),array(
13980
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Math Books"),
13981
+ 'value' => 4656
13982
+ ),array(
13983
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Medical Books"),
13984
+ 'value' => 4657
13985
+ ),array(
13986
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Music Books"),
13987
+ 'value' => 4658
13988
+ ),array(
13989
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Performing Arts Books"),
13990
+ 'value' => 4659
13991
+ ),array(
13992
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Pet Books"),
13993
+ 'value' => 4660
13994
+ ),array(
13995
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Philosophy Books"),
13996
+ 'value' => 4661
13997
+ ),array(
13998
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Photography Books"),
13999
+ 'value' => 4662
14000
+ ),array(
14001
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Poetry"),
14002
+ 'value' => 4663
14003
+ ),array(
14004
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Political Science Books"),
14005
+ 'value' => 4664
14006
+ ),array(
14007
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Psychology Books"),
14008
+ 'value' => 4665
14009
+ ),array(
14010
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Puzzle Books"),
14011
+ 'value' => 4666
14012
+ ),array(
14013
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Reference Books"),
14014
+ 'value' => 4667
14015
+ ),array(
14016
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Religion Books"),
14017
+ 'value' => 4668
14018
+ ),array(
14019
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Science Books"),
14020
+ 'value' => 4669
14021
+ ),array(
14022
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Self Help Books"),
14023
+ 'value' => 4670
14024
+ ),array(
14025
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Social Science Books"),
14026
+ 'value' => 4671
14027
+ ),array(
14028
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Sports Books"),
14029
+ 'value' => 4672
14030
+ ),array(
14031
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Technology Books"),
14032
+ 'value' => 4673
14033
+ ),array(
14034
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Transportation Books"),
14035
+ 'value' => 4674
14036
+ ),array(
14037
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > Travel Books"),
14038
+ 'value' => 4675
14039
+ ),array(
14040
+ 'label' => Mage::helper('richsnippet')->__("Media > Books > Non-Fiction > True Crime Books"),
14041
+ 'value' => 4676
14042
+ ),array(
14043
+ 'label' => Mage::helper('richsnippet')->__("Media > DVDs & Videos"),
14044
+ 'value' => 4677
14045
+ ),array(
14046
+ 'label' => Mage::helper('richsnippet')->__("Media > Magazines & Newspapers"),
14047
+ 'value' => 4678
14048
+ ),array(
14049
+ 'label' => Mage::helper('richsnippet')->__("Media > Music"),
14050
+ 'value' => 4679
14051
+ ),array(
14052
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals"),
14053
+ 'value' => 4680
14054
+ ),array(
14055
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals > Electronics Manuals"),
14056
+ 'value' => 4681
14057
+ ),array(
14058
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals > Household Appliance Manuals"),
14059
+ 'value' => 4682
14060
+ ),array(
14061
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals > Kitchen Appliance Manuals"),
14062
+ 'value' => 4683
14063
+ ),array(
14064
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals > Model & Toys Manuals"),
14065
+ 'value' => 4684
14066
+ ),array(
14067
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals > Power Tool & Equipment Manuals"),
14068
+ 'value' => 4685
14069
+ ),array(
14070
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals > Sports & Recreation Manuals"),
14071
+ 'value' => 4686
14072
+ ),array(
14073
+ 'label' => Mage::helper('richsnippet')->__("Media > Product Manuals > Vehicle Service Manuals"),
14074
+ 'value' => 4687
14075
+ ),array(
14076
+ 'label' => Mage::helper('richsnippet')->__("Media > Sheet Music"),
14077
+ 'value' => 4688
14078
+ ),array(
14079
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies"),
14080
+ 'value' => 4689
14081
+ ),array(
14082
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Book Accessories"),
14083
+ 'value' => 4690
14084
+ ),array(
14085
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Book Accessories > Book Covers"),
14086
+ 'value' => 4691
14087
+ ),array(
14088
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Book Accessories > Book Lights"),
14089
+ 'value' => 4692
14090
+ ),array(
14091
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Book Accessories > Book Stands & Rests"),
14092
+ 'value' => 4693
14093
+ ),array(
14094
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Book Accessories > Bookmarks"),
14095
+ 'value' => 4694
14096
+ ),array(
14097
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization"),
14098
+ 'value' => 4695
14099
+ ),array(
14100
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Address Books"),
14101
+ 'value' => 4696
14102
+ ),array(
14103
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies"),
14104
+ 'value' => 4697
14105
+ ),array(
14106
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories"),
14107
+ 'value' => 4698
14108
+ ),array(
14109
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Binder Rings"),
14110
+ 'value' => 4699
14111
+ ),array(
14112
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Index Dividers"),
14113
+ 'value' => 4700
14114
+ ),array(
14115
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies > Binder Accessories > Sheet Protectors"),
14116
+ 'value' => 4701
14117
+ ),array(
14118
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies > Binders"),
14119
+ 'value' => 4702
14120
+ ),array(
14121
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies > Binding Combs & Spines"),
14122
+ 'value' => 4703
14123
+ ),array(
14124
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Binding Supplies > Binding Machines"),
14125
+ 'value' => 4704
14126
+ ),array(
14127
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Business Card Books"),
14128
+ 'value' => 4705
14129
+ ),array(
14130
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Business Card Stands"),
14131
+ 'value' => 4706
14132
+ ),array(
14133
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > CD/DVD Organizers"),
14134
+ 'value' => 4707
14135
+ ),array(
14136
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > CD/DVD Organizers > CD/DVD Pouches & Visors"),
14137
+ 'value' => 4708
14138
+ ),array(
14139
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > CD/DVD Organizers > CD/DVD Sleeves"),
14140
+ 'value' => 4709
14141
+ ),array(
14142
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > CD/DVD Organizers > Jewel Cases"),
14143
+ 'value' => 4710
14144
+ ),array(
14145
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Calendars, Organizers & Planners"),
14146
+ 'value' => 4711
14147
+ ),array(
14148
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Card Files"),
14149
+ 'value' => 4712
14150
+ ),array(
14151
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Card Sleeves"),
14152
+ 'value' => 4713
14153
+ ),array(
14154
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Cash Boxes"),
14155
+ 'value' => 4714
14156
+ ),array(
14157
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Desk Organizers"),
14158
+ 'value' => 4715
14159
+ ),array(
14160
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Desk Organizers > Desk Trays"),
14161
+ 'value' => 4716
14162
+ ),array(
14163
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > File Boxes"),
14164
+ 'value' => 4717
14165
+ ),array(
14166
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > File Folders"),
14167
+ 'value' => 4718
14168
+ ),array(
14169
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Folders & Report Covers"),
14170
+ 'value' => 4719
14171
+ ),array(
14172
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Greeting Card Organizers"),
14173
+ 'value' => 4720
14174
+ ),array(
14175
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Laminating"),
14176
+ 'value' => 4721
14177
+ ),array(
14178
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Laminating > Laminating Film, Pouches & Sheets"),
14179
+ 'value' => 4722
14180
+ ),array(
14181
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Laminating > Laminators"),
14182
+ 'value' => 4723
14183
+ ),array(
14184
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Mail Sorters"),
14185
+ 'value' => 4724
14186
+ ),array(
14187
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Pen & Pencil Cases"),
14188
+ 'value' => 4725
14189
+ ),array(
14190
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Portfolios & Padfolios"),
14191
+ 'value' => 4726
14192
+ ),array(
14193
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Recipe Card Boxes"),
14194
+ 'value' => 4727
14195
+ ),array(
14196
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Filing & Organization > Storage Lockers & Cabinets"),
14197
+ 'value' => 4728
14198
+ ),array(
14199
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies"),
14200
+ 'value' => 4729
14201
+ ),array(
14202
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Adhesives"),
14203
+ 'value' => 4730
14204
+ ),array(
14205
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Adhesives > Office Tape"),
14206
+ 'value' => 4731
14207
+ ),array(
14208
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Brass Fasteners"),
14209
+ 'value' => 4732
14210
+ ),array(
14211
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Correction"),
14212
+ 'value' => 4733
14213
+ ),array(
14214
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Correction > Correction Fluids, Pens & Tapes"),
14215
+ 'value' => 4734
14216
+ ),array(
14217
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Correction > Erasers"),
14218
+ 'value' => 4735
14219
+ ),array(
14220
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Labels & Tags"),
14221
+ 'value' => 4736
14222
+ ),array(
14223
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Labels & Tags > Address Labels"),
14224
+ 'value' => 4737
14225
+ ),array(
14226
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Labels & Tags > Folder Tabs"),
14227
+ 'value' => 4738
14228
+ ),array(
14229
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Labels & Tags > Label Clips"),
14230
+ 'value' => 4739
14231
+ ),array(
14232
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Labels & Tags > Label Maker Tape"),
14233
+ 'value' => 4740
14234
+ ),array(
14235
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Labels & Tags > Shipping Labels"),
14236
+ 'value' => 4741
14237
+ ),array(
14238
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Labels & Tags > Shipping Tags"),
14239
+ 'value' => 4742
14240
+ ),array(
14241
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Clips & Clamps"),
14242
+ 'value' => 4743
14243
+ ),array(
14244
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products"),
14245
+ 'value' => 4744
14246
+ ),array(
14247
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Binder Paper"),
14248
+ 'value' => 4745
14249
+ ),array(
14250
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Blank ID Cards"),
14251
+ 'value' => 4746
14252
+ ),array(
14253
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Business Cards"),
14254
+ 'value' => 4747
14255
+ ),array(
14256
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Business Forms & Receipts"),
14257
+ 'value' => 4748
14258
+ ),array(
14259
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Checks"),
14260
+ 'value' => 4749
14261
+ ),array(
14262
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Cover Paper"),
14263
+ 'value' => 4750
14264
+ ),array(
14265
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Envelopes"),
14266
+ 'value' => 4751
14267
+ ),array(
14268
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Index Cards"),
14269
+ 'value' => 4752
14270
+ ),array(
14271
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Notebooks & Notepads"),
14272
+ 'value' => 4753
14273
+ ),array(
14274
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Post Cards"),
14275
+ 'value' => 4754
14276
+ ),array(
14277
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Printer & Copier Paper"),
14278
+ 'value' => 4755
14279
+ ),array(
14280
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Printer & Copier Paper > Photo Printer Paper"),
14281
+ 'value' => 4756
14282
+ ),array(
14283
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Receipt Paper Rolls"),
14284
+ 'value' => 4757
14285
+ ),array(
14286
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Stationery"),
14287
+ 'value' => 4758
14288
+ ),array(
14289
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Paper Products > Sticky Notes"),
14290
+ 'value' => 4759
14291
+ ),array(
14292
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Rubber Bands"),
14293
+ 'value' => 4760
14294
+ ),array(
14295
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Stamp Pads & Inks"),
14296
+ 'value' => 4761
14297
+ ),array(
14298
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Staples"),
14299
+ 'value' => 4762
14300
+ ),array(
14301
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > General Supplies > Tacks & Pushpins"),
14302
+ 'value' => 4763
14303
+ ),array(
14304
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Impulse Sealers"),
14305
+ 'value' => 4764
14306
+ ),array(
14307
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Name Plates"),
14308
+ 'value' => 4765
14309
+ ),array(
14310
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office & Chair Mats"),
14311
+ 'value' => 4766
14312
+ ),array(
14313
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office & Chair Mats > Anti-Fatigue Mats"),
14314
+ 'value' => 4767
14315
+ ),array(
14316
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office & Chair Mats > Chair Mats"),
14317
+ 'value' => 4768
14318
+ ),array(
14319
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office & Chair Mats > Office Mats"),
14320
+ 'value' => 4769
14321
+ ),array(
14322
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Carts"),
14323
+ 'value' => 4770
14324
+ ),array(
14325
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Carts > AV Carts"),
14326
+ 'value' => 4771
14327
+ ),array(
14328
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Carts > Book Carts"),
14329
+ 'value' => 4772
14330
+ ),array(
14331
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Carts > File Carts"),
14332
+ 'value' => 4773
14333
+ ),array(
14334
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Carts > Mail Carts"),
14335
+ 'value' => 4774
14336
+ ),array(
14337
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Carts > Utility Carts"),
14338
+ 'value' => 4775
14339
+ ),array(
14340
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment"),
14341
+ 'value' => 4776
14342
+ ),array(
14343
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Calculators"),
14344
+ 'value' => 4777
14345
+ ),array(
14346
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Electronic Dictionaries & Translators"),
14347
+ 'value' => 4778
14348
+ ),array(
14349
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Label Makers"),
14350
+ 'value' => 4779
14351
+ ),array(
14352
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Office Shredders"),
14353
+ 'value' => 4780
14354
+ ),array(
14355
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Postage Meters"),
14356
+ 'value' => 4781
14357
+ ),array(
14358
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Time & Attendance Clocks"),
14359
+ 'value' => 4782
14360
+ ),array(
14361
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Transcribers & Dictation Systems"),
14362
+ 'value' => 4783
14363
+ ),array(
14364
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Equipment > Typewriters"),
14365
+ 'value' => 4784
14366
+ ),array(
14367
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments"),
14368
+ 'value' => 4785
14369
+ ),array(
14370
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Call Bells"),
14371
+ 'value' => 4786
14372
+ ),array(
14373
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Clipboards"),
14374
+ 'value' => 4787
14375
+ ),array(
14376
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Magnifiers"),
14377
+ 'value' => 4788
14378
+ ),array(
14379
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Office Rulers"),
14380
+ 'value' => 4789
14381
+ ),array(
14382
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Pencil Sharpeners"),
14383
+ 'value' => 4790
14384
+ ),array(
14385
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Rubber Stamps"),
14386
+ 'value' => 4791
14387
+ ),array(
14388
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Rubber Stamps > Decorative Rubber Stamps"),
14389
+ 'value' => 4792
14390
+ ),array(
14391
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Rubber Stamps > Office Rubber Stamps"),
14392
+ 'value' => 4793
14393
+ ),array(
14394
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Scissors"),
14395
+ 'value' => 4794
14396
+ ),array(
14397
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Staple Removers"),
14398
+ 'value' => 4795
14399
+ ),array(
14400
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Staplers"),
14401
+ 'value' => 4796
14402
+ ),array(
14403
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories"),
14404
+ 'value' => 4797
14405
+ ),array(
14406
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Marker & Highlighter Ink Refills"),
14407
+ 'value' => 4798
14408
+ ),array(
14409
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Pen Ink & Refills"),
14410
+ 'value' => 4799
14411
+ ),array(
14412
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Pen Replacement Tips"),
14413
+ 'value' => 4800
14414
+ ),array(
14415
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instrument Accessories > Pencil Lead & Refills"),
14416
+ 'value' => 4801
14417
+ ),array(
14418
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments"),
14419
+ 'value' => 4802
14420
+ ),array(
14421
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Art Charcoals"),
14422
+ 'value' => 4803
14423
+ ),array(
14424
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Chalk"),
14425
+ 'value' => 4804
14426
+ ),array(
14427
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Crayons"),
14428
+ 'value' => 4805
14429
+ ),array(
14430
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Markers & Highlighters"),
14431
+ 'value' => 4806
14432
+ ),array(
14433
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pastels"),
14434
+ 'value' => 4807
14435
+ ),array(
14436
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils"),
14437
+ 'value' => 4808
14438
+ ),array(
14439
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Multifunction Writing Instruments"),
14440
+ 'value' => 4809
14441
+ ),array(
14442
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pen & Pencil Sets"),
14443
+ 'value' => 4810
14444
+ ),array(
14445
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils"),
14446
+ 'value' => 4811
14447
+ ),array(
14448
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils > Art Pencils"),
14449
+ 'value' => 4812
14450
+ ),array(
14451
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pencils > Writing Pencils"),
14452
+ 'value' => 4813
14453
+ ),array(
14454
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Office Instruments > Writing & Drawing Instruments > Pens & Pencils > Pens"),
14455
+ 'value' => 4814
14456
+ ),array(
14457
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling"),
14458
+ 'value' => 4815
14459
+ ),array(
14460
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Craft Knives"),
14461
+ 'value' => 4816
14462
+ ),array(
14463
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Cutting Mats"),
14464
+ 'value' => 4817
14465
+ ),array(
14466
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Fingertip Grips"),
14467
+ 'value' => 4818
14468
+ ),array(
14469
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Hole Punches"),
14470
+ 'value' => 4819
14471
+ ),array(
14472
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Hole Punches > Decorative Hole Punches"),
14473
+ 'value' => 4820
14474
+ ),array(
14475
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Hole Punches > Office Hole Punches"),
14476
+ 'value' => 4821
14477
+ ),array(
14478
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Paper Cutter Accessories"),
14479
+ 'value' => 4822
14480
+ ),array(
14481
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Paper Cutter Accessories > Paper Cutter Stands"),
14482
+ 'value' => 4823
14483
+ ),array(
14484
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Paper Cutters"),
14485
+ 'value' => 4824
14486
+ ),array(
14487
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Paper Folding Machines"),
14488
+ 'value' => 4825
14489
+ ),array(
14490
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Paper Joggers"),
14491
+ 'value' => 4826
14492
+ ),array(
14493
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Paperweights"),
14494
+ 'value' => 4827
14495
+ ),array(
14496
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Paper Handling > Pencil Boards"),
14497
+ 'value' => 4828
14498
+ ),array(
14499
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies"),
14500
+ 'value' => 4829
14501
+ ),array(
14502
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Chalkboards"),
14503
+ 'value' => 4830
14504
+ ),array(
14505
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Display Boards"),
14506
+ 'value' => 4831
14507
+ ),array(
14508
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Display Boards > Bulletin Board Accessories"),
14509
+ 'value' => 4832
14510
+ ),array(
14511
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Display Boards > Bulletin Board Accessories > Bulletin Board Trim"),
14512
+ 'value' => 4833
14513
+ ),array(
14514
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Display Boards > Bulletin Boards"),
14515
+ 'value' => 4834
14516
+ ),array(
14517
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Display Boards > Foam Boards"),
14518
+ 'value' => 4835
14519
+ ),array(
14520
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Display Boards > Mounting Boards"),
14521
+ 'value' => 4836
14522
+ ),array(
14523
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Display Boards > Poster Boards"),
14524
+ 'value' => 4837
14525
+ ),array(
14526
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Document Cameras"),
14527
+ 'value' => 4838
14528
+ ),array(
14529
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Easel Pads"),
14530
+ 'value' => 4839
14531
+ ),array(
14532
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Easels"),
14533
+ 'value' => 4840
14534
+ ),array(
14535
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Laser Pointers"),
14536
+ 'value' => 4841
14537
+ ),array(
14538
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Lecterns"),
14539
+ 'value' => 4842
14540
+ ),array(
14541
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Transparencies"),
14542
+ 'value' => 4843
14543
+ ),array(
14544
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Whiteboards"),
14545
+ 'value' => 4844
14546
+ ),array(
14547
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Presentation Supplies > Wireless Presenters"),
14548
+ 'value' => 4845
14549
+ ),array(
14550
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Shipping Supplies"),
14551
+ 'value' => 4846
14552
+ ),array(
14553
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Shipping Supplies > Packing Materials"),
14554
+ 'value' => 4847
14555
+ ),array(
14556
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Shipping Supplies > Packing Tape"),
14557
+ 'value' => 4848
14558
+ ),array(
14559
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Shipping Supplies > Postal Scales"),
14560
+ 'value' => 4849
14561
+ ),array(
14562
+ 'label' => Mage::helper('richsnippet')->__("Office Supplies > Shipping Supplies > Shipping Boxes"),
14563
+ 'value' => 4850
14564
+ ),array(
14565
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial"),
14566
+ 'value' => 4851
14567
+ ),array(
14568
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Memorial Ceremony Supplies"),
14569
+ 'value' => 4852
14570
+ ),array(
14571
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Memorial Ceremony Supplies > Memorial Urns"),
14572
+ 'value' => 4853
14573
+ ),array(
14574
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Religious Items"),
14575
+ 'value' => 4854
14576
+ ),array(
14577
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Religious Items > Prayer Beads"),
14578
+ 'value' => 4855
14579
+ ),array(
14580
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Religious Items > Religious Altars"),
14581
+ 'value' => 4856
14582
+ ),array(
14583
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Religious Items > Religious Veils"),
14584
+ 'value' => 4857
14585
+ ),array(
14586
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Wedding Ceremony Supplies"),
14587
+ 'value' => 4858
14588
+ ),array(
14589
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Wedding Ceremony Supplies > Flower Girl Baskets"),
14590
+ 'value' => 4859
14591
+ ),array(
14592
+ 'label' => Mage::helper('richsnippet')->__("Religious & Ceremonial > Wedding Ceremony Supplies > Ring Pillows"),
14593
+ 'value' => 4860
14594
+ ),array(
14595
+ 'label' => Mage::helper('richsnippet')->__("Software"),
14596
+ 'value' => 4861
14597
+ ),array(
14598
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software"),
14599
+ 'value' => 4862
14600
+ ),array(
14601
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Antivirus & Security Software"),
14602
+ 'value' => 4863
14603
+ ),array(
14604
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Business & Productivity Software"),
14605
+ 'value' => 4864
14606
+ ),array(
14607
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Compilers & Programming Tools"),
14608
+ 'value' => 4865
14609
+ ),array(
14610
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Computer Utilities & Maintenance"),
14611
+ 'value' => 4866
14612
+ ),array(
14613
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Educational Software"),
14614
+ 'value' => 4867
14615
+ ),array(
14616
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Financial, Tax & Accounting Software"),
14617
+ 'value' => 4868
14618
+ ),array(
14619
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Handheld & PDA Software"),
14620
+ 'value' => 4869
14621
+ ),array(
14622
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software"),
14623
+ 'value' => 4870
14624
+ ),array(
14625
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > 3D Modeling Software"),
14626
+ 'value' => 4871
14627
+ ),array(
14628
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Animation Editing Software"),
14629
+ 'value' => 4872
14630
+ ),array(
14631
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Graphic Design & Illustration Software"),
14632
+ 'value' => 4873
14633
+ ),array(
14634
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Home & Interior Design Software"),
14635
+ 'value' => 4874
14636
+ ),array(
14637
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Home Publishing Software"),
14638
+ 'value' => 4875
14639
+ ),array(
14640
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Media Viewing Software"),
14641
+ 'value' => 4876
14642
+ ),array(
14643
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Music Composition Software"),
14644
+ 'value' => 4877
14645
+ ),array(
14646
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Sound Editing Software"),
14647
+ 'value' => 4878
14648
+ ),array(
14649
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Video Editing Software"),
14650
+ 'value' => 4879
14651
+ ),array(
14652
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Multimedia & Design Software > Web Design Software"),
14653
+ 'value' => 4880
14654
+ ),array(
14655
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Network Software"),
14656
+ 'value' => 4881
14657
+ ),array(
14658
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Office Application Software"),
14659
+ 'value' => 4882
14660
+ ),array(
14661
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Operating Systems"),
14662
+ 'value' => 4883
14663
+ ),array(
14664
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Reference Software"),
14665
+ 'value' => 4884
14666
+ ),array(
14667
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Reference Software > Dictionary & Translation Software"),
14668
+ 'value' => 4885
14669
+ ),array(
14670
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Reference Software > GPS Map Data & Software"),
14671
+ 'value' => 4886
14672
+ ),array(
14673
+ 'label' => Mage::helper('richsnippet')->__("Software > Computer Software > Restore Disks"),
14674
+ 'value' => 4887
14675
+ ),array(
14676
+ 'label' => Mage::helper('richsnippet')->__("Software > Digital Goods & Currency"),
14677
+ 'value' => 4888
14678
+ ),array(
14679
+ 'label' => Mage::helper('richsnippet')->__("Software > Digital Goods & Currency > Clip Art"),
14680
+ 'value' => 4889
14681
+ ),array(
14682
+ 'label' => Mage::helper('richsnippet')->__("Software > Digital Goods & Currency > Computer Icons"),
14683
+ 'value' => 4890
14684
+ ),array(
14685
+ 'label' => Mage::helper('richsnippet')->__("Software > Digital Goods & Currency > Desktop Wallpaper"),
14686
+ 'value' => 4891
14687
+ ),array(
14688
+ 'label' => Mage::helper('richsnippet')->__("Software > Digital Goods & Currency > Document Templates"),
14689
+ 'value' => 4892
14690
+ ),array(
14691
+ 'label' => Mage::helper('richsnippet')->__("Software > Digital Goods & Currency > Fonts"),
14692
+ 'value' => 4893
14693
+ ),array(
14694
+ 'label' => Mage::helper('richsnippet')->__("Software > Digital Goods & Currency > Virtual Currency"),
14695
+ 'value' => 4894
14696
+ ),array(
14697
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software"),
14698
+ 'value' => 4895
14699
+ ),array(
14700
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All Game Boy Games"),
14701
+ 'value' => 4896
14702
+ ),array(
14703
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All Game Boy Games > Game Boy Advance Games"),
14704
+ 'value' => 4897
14705
+ ),array(
14706
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All Game Boy Games > Game Boy Games"),
14707
+ 'value' => 4898
14708
+ ),array(
14709
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All PlayStation Games"),
14710
+ 'value' => 4899
14711
+ ),array(
14712
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All PlayStation Games > PlayStation (original) Games"),
14713
+ 'value' => 4900
14714
+ ),array(
14715
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All PlayStation Games > PlayStation 2 Games"),
14716
+ 'value' => 4901
14717
+ ),array(
14718
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All PlayStation Games > PlayStation 3 Games"),
14719
+ 'value' => 4902
14720
+ ),array(
14721
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All XBox Games"),
14722
+ 'value' => 4903
14723
+ ),array(
14724
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All XBox Games > XBox (original) Games"),
14725
+ 'value' => 4904
14726
+ ),array(
14727
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > All XBox Games > XBox 360 Games"),
14728
+ 'value' => 4905
14729
+ ),array(
14730
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Atari 2600 Games"),
14731
+ 'value' => 4906
14732
+ ),array(
14733
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Atari 5200 Games"),
14734
+ 'value' => 4907
14735
+ ),array(
14736
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Atari Lynx Games"),
14737
+ 'value' => 4908
14738
+ ),array(
14739
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > ColecoVision Games"),
14740
+ 'value' => 4909
14741
+ ),array(
14742
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Computer Games"),
14743
+ 'value' => 4910
14744
+ ),array(
14745
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Computer Games > Mac Games"),
14746
+ 'value' => 4911
14747
+ ),array(
14748
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Computer Games > PC Games"),
14749
+ 'value' => 4912
14750
+ ),array(
14751
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Dreamcast Games"),
14752
+ 'value' => 4913
14753
+ ),array(
14754
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Game Gear Games"),
14755
+ 'value' => 4914
14756
+ ),array(
14757
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > GameCube Games"),
14758
+ 'value' => 4915
14759
+ ),array(
14760
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Intellivision Games"),
14761
+ 'value' => 4916
14762
+ ),array(
14763
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Jaguar Games"),
14764
+ 'value' => 4917
14765
+ ),array(
14766
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > LeapFrog Games"),
14767
+ 'value' => 4918
14768
+ ),array(
14769
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > N-Gage Games"),
14770
+ 'value' => 4919
14771
+ ),array(
14772
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Neo Geo Games"),
14773
+ 'value' => 4920
14774
+ ),array(
14775
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Neo Geo Pocket Games"),
14776
+ 'value' => 4921
14777
+ ),array(
14778
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Nintendo 64 Games"),
14779
+ 'value' => 4922
14780
+ ),array(
14781
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Nintendo DS Games"),
14782
+ 'value' => 4923
14783
+ ),array(
14784
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Nintendo Entertainment System Games"),
14785
+ 'value' => 4924
14786
+ ),array(
14787
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > PlayStation Portable Games"),
14788
+ 'value' => 4925
14789
+ ),array(
14790
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > PlayStation Vita Games"),
14791
+ 'value' => 4926
14792
+ ),array(
14793
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Sega Genesis Games"),
14794
+ 'value' => 4927
14795
+ ),array(
14796
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Sega Master System Games"),
14797
+ 'value' => 4928
14798
+ ),array(
14799
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Super Nintendo Games"),
14800
+ 'value' => 4929
14801
+ ),array(
14802
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Turbografx 16 Games"),
14803
+ 'value' => 4930
14804
+ ),array(
14805
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Wii Games"),
14806
+ 'value' => 4931
14807
+ ),array(
14808
+ 'label' => Mage::helper('richsnippet')->__("Software > Video Game Software > Wii U Games"),
14809
+ 'value' => 4932
14810
+ ),array(
14811
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods"),
14812
+ 'value' => 4933
14813
+ ),array(
14814
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Air Sports"),
14815
+ 'value' => 4934
14816
+ ),array(
14817
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Air Sports > Air Suits"),
14818
+ 'value' => 4935
14819
+ ),array(
14820
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Air Sports > Hang Gliding"),
14821
+ 'value' => 4936
14822
+ ),array(
14823
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Air Sports > Hang Gliding > Hang Gliders"),
14824
+ 'value' => 4937
14825
+ ),array(
14826
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Air Sports > Parachutes"),
14827
+ 'value' => 4938
14828
+ ),array(
14829
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports"),
14830
+ 'value' => 4939
14831
+ ),array(
14832
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Boxing"),
14833
+ 'value' => 4940
14834
+ ),array(
14835
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Boxing & Martial Arts Protective Gear"),
14836
+ 'value' => 4941
14837
+ ),array(
14838
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Boxing > Boxing Gloves & Mitts"),
14839
+ 'value' => 4942
14840
+ ),array(
14841
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Boxing > Boxing Ring Parts"),
14842
+ 'value' => 4943
14843
+ ),array(
14844
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Boxing > Boxing Rings"),
14845
+ 'value' => 4944
14846
+ ),array(
14847
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Boxing > Punching Bag Accessories"),
14848
+ 'value' => 4945
14849
+ ),array(
14850
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Fencing"),
14851
+ 'value' => 4946
14852
+ ),array(
14853
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Fencing > Fencing Protective Gear"),
14854
+ 'value' => 4947
14855
+ ),array(
14856
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Fencing > Fencing Protective Gear > Fencing Gloves"),
14857
+ 'value' => 4948
14858
+ ),array(
14859
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Fencing > Fencing Protective Gear > Fencing Masks"),
14860
+ 'value' => 4949
14861
+ ),array(
14862
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Fencing > Fencing Weapons"),
14863
+ 'value' => 4950
14864
+ ),array(
14865
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Grappling Dummies"),
14866
+ 'value' => 4951
14867
+ ),array(
14868
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Martial Arts"),
14869
+ 'value' => 4952
14870
+ ),array(
14871
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Martial Arts > Martial Arts Belts"),
14872
+ 'value' => 4953
14873
+ ),array(
14874
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Martial Arts > Martial Arts Weapons"),
14875
+ 'value' => 4954
14876
+ ),array(
14877
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Punching & Training Bag Accessories"),
14878
+ 'value' => 4955
14879
+ ),array(
14880
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Punching & Training Bags"),
14881
+ 'value' => 4956
14882
+ ),array(
14883
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Wrestling"),
14884
+ 'value' => 4957
14885
+ ),array(
14886
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Wrestling > Wrestling Mats"),
14887
+ 'value' => 4958
14888
+ ),array(
14889
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Combat Sports > Wrestling > Wrestling Protective Gear"),
14890
+ 'value' => 4959
14891
+ ),array(
14892
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Dancing"),
14893
+ 'value' => 4960
14894
+ ),array(
14895
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Dancing > Ballet Bars"),
14896
+ 'value' => 4961
14897
+ ),array(
14898
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness"),
14899
+ 'value' => 4962
14900
+ ),array(
14901
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Abdominal Equipment"),
14902
+ 'value' => 4963
14903
+ ),array(
14904
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Cardio Machine Accessories"),
14905
+ 'value' => 4964
14906
+ ),array(
14907
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Cardio Machines"),
14908
+ 'value' => 4965
14909
+ ),array(
14910
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Cardio Machines > Elliptical Trainers"),
14911
+ 'value' => 4966
14912
+ ),array(
14913
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Cardio Machines > Exercise Bikes"),
14914
+ 'value' => 4967
14915
+ ),array(
14916
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Cardio Machines > Rowing Machines"),
14917
+ 'value' => 4968
14918
+ ),array(
14919
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Cardio Machines > Stair Climbers"),
14920
+ 'value' => 4969
14921
+ ),array(
14922
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Cardio Machines > Treadmills"),
14923
+ 'value' => 4970
14924
+ ),array(
14925
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Exercise Balls"),
14926
+ 'value' => 4971
14927
+ ),array(
14928
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Exercise Bands"),
14929
+ 'value' => 4972
14930
+ ),array(
14931
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Foam Roller Accessories"),
14932
+ 'value' => 4973
14933
+ ),array(
14934
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Foam Roller Accessories > Foam Roller Storage Bags"),
14935
+ 'value' => 4974
14936
+ ),array(
14937
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Foam Rollers"),
14938
+ 'value' => 4975
14939
+ ),array(
14940
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Free Weight Accessories"),
14941
+ 'value' => 4976
14942
+ ),array(
14943
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Free Weight Bars"),
14944
+ 'value' => 4977
14945
+ ),array(
14946
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Free Weights"),
14947
+ 'value' => 4978
14948
+ ),array(
14949
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Gym Mats"),
14950
+ 'value' => 4979
14951
+ ),array(
14952
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Gym Mats > Exercise Equipment Mats"),
14953
+ 'value' => 4980
14954
+ ),array(
14955
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Jump Ropes"),
14956
+ 'value' => 4981
14957
+ ),array(
14958
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Medicine Balls"),
14959
+ 'value' => 4982
14960
+ ),array(
14961
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Reaction Balls"),
14962
+ 'value' => 4983
14963
+ ),array(
14964
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Stopwatches"),
14965
+ 'value' => 4984
14966
+ ),array(
14967
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Weight Benches"),
14968
+ 'value' => 4985
14969
+ ),array(
14970
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Weight Lifting Belts"),
14971
+ 'value' => 4986
14972
+ ),array(
14973
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Weight Lifting Gloves & Hand Supports"),
14974
+ 'value' => 4987
14975
+ ),array(
14976
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Weight Lifting Machine Accessories"),
14977
+ 'value' => 4988
14978
+ ),array(
14979
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Weight Lifting Machines"),
14980
+ 'value' => 4989
14981
+ ),array(
14982
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Weighted Clothing"),
14983
+ 'value' => 4990
14984
+ ),array(
14985
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Yoga & Pilates"),
14986
+ 'value' => 4991
14987
+ ),array(
14988
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Yoga & Pilates > Pilates Machines"),
14989
+ 'value' => 4992
14990
+ ),array(
14991
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Blocks"),
14992
+ 'value' => 4993
14993
+ ),array(
14994
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga & Pilates Mats"),
14995
+ 'value' => 4994
14996
+ ),array(
14997
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Yoga & Pilates > Yoga Mat Bags & Straps"),
14998
+ 'value' => 4995
14999
+ ),array(
15000
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Yoga & Pilates Accessories"),
15001
+ 'value' => 4996
15002
+ ),array(
15003
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Exercise & Fitness > Yoga & Pilates Accessories > Yoga & Pilates Towels"),
15004
+ 'value' => 4997
15005
+ ),array(
15006
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics"),
15007
+ 'value' => 4998
15008
+ ),array(
15009
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Balance Beams"),
15010
+ 'value' => 4999
15011
+ ),array(
15012
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Gymnastics Bars"),
15013
+ 'value' => 5000
15014
+ ),array(
15015
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Gymnastics Mats"),
15016
+ 'value' => 5001
15017
+ ),array(
15018
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Gymnastics Protective Gear"),
15019
+ 'value' => 5002
15020
+ ),array(
15021
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Gymnastics Rings"),
15022
+ 'value' => 5003
15023
+ ),array(
15024
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Pommel Horses"),
15025
+ 'value' => 5004
15026
+ ),array(
15027
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Springboards"),
15028
+ 'value' => 5005
15029
+ ),array(
15030
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Gymnastics > Vaulting Horses"),
15031
+ 'value' => 5006
15032
+ ),array(
15033
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games"),
15034
+ 'value' => 5007
15035
+ ),array(
15036
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Air Hockey"),
15037
+ 'value' => 5008
15038
+ ),array(
15039
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Air Hockey > Air Hockey Pucks"),
15040
+ 'value' => 5009
15041
+ ),array(
15042
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Air Hockey > Air Hockey Strikers"),
15043
+ 'value' => 5010
15044
+ ),array(
15045
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Air Hockey > Air Hockey Table Parts"),
15046
+ 'value' => 5011
15047
+ ),array(
15048
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Air Hockey > Air Hockey Tables"),
15049
+ 'value' => 5012
15050
+ ),array(
15051
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards"),
15052
+ 'value' => 5013
15053
+ ),array(
15054
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Ball Racks"),
15055
+ 'value' => 5014
15056
+ ),array(
15057
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Balls"),
15058
+ 'value' => 5015
15059
+ ),array(
15060
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories"),
15061
+ 'value' => 5016
15062
+ ),array(
15063
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Cue Accessories > Billiard Cue Racks"),
15064
+ 'value' => 5017
15065
+ ),array(
15066
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Cues & Bridges"),
15067
+ 'value' => 5018
15068
+ ),array(
15069
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Gloves"),
15070
+ 'value' => 5019
15071
+ ),array(
15072
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Table Lights"),
15073
+ 'value' => 5020
15074
+ ),array(
15075
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories"),
15076
+ 'value' => 5021
15077
+ ),array(
15078
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Cloth"),
15079
+ 'value' => 5022
15080
+ ),array(
15081
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Pockets"),
15082
+ 'value' => 5023
15083
+ ),array(
15084
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Table Parts & Accessories > Billiard Table Brushes"),
15085
+ 'value' => 5024
15086
+ ),array(
15087
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Billiards > Billiard Tables"),
15088
+ 'value' => 5025
15089
+ ),array(
15090
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Bowling"),
15091
+ 'value' => 5026
15092
+ ),array(
15093
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Bowling > Bowling Ball Bags"),
15094
+ 'value' => 5027
15095
+ ),array(
15096
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Bowling > Bowling Balls"),
15097
+ 'value' => 5028
15098
+ ),array(
15099
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Bowling > Bowling Gloves"),
15100
+ 'value' => 5029
15101
+ ),array(
15102
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Bowling > Bowling Pins"),
15103
+ 'value' => 5030
15104
+ ),array(
15105
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Bowling > Bowling Wrist Supports"),
15106
+ 'value' => 5031
15107
+ ),array(
15108
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts"),
15109
+ 'value' => 5032
15110
+ ),array(
15111
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts > Dart Backboards"),
15112
+ 'value' => 5033
15113
+ ),array(
15114
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts > Dart Parts"),
15115
+ 'value' => 5034
15116
+ ),array(
15117
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts > Dart Parts > Dart Flights"),
15118
+ 'value' => 5035
15119
+ ),array(
15120
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts > Dart Parts > Dart Shafts"),
15121
+ 'value' => 5036
15122
+ ),array(
15123
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts > Dart Parts > Dart Tips"),
15124
+ 'value' => 5037
15125
+ ),array(
15126
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts > Dartboards"),
15127
+ 'value' => 5038
15128
+ ),array(
15129
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Darts > Single Darts"),
15130
+ 'value' => 5039
15131
+ ),array(
15132
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Foosball"),
15133
+ 'value' => 5040
15134
+ ),array(
15135
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Foosball > Foosball Balls"),
15136
+ 'value' => 5041
15137
+ ),array(
15138
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Foosball > Foosball Table Parts"),
15139
+ 'value' => 5042
15140
+ ),array(
15141
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Foosball > Foosball Tables"),
15142
+ 'value' => 5043
15143
+ ),array(
15144
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Multi-Game Tables"),
15145
+ 'value' => 5044
15146
+ ),array(
15147
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong"),
15148
+ 'value' => 5045
15149
+ ),array(
15150
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong > Ping Pong Balls"),
15151
+ 'value' => 5046
15152
+ ),array(
15153
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong > Ping Pong Nets & Posts"),
15154
+ 'value' => 5047
15155
+ ),array(
15156
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong > Ping Pong Paddle Accessories"),
15157
+ 'value' => 5048
15158
+ ),array(
15159
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong > Ping Pong Paddles"),
15160
+ 'value' => 5049
15161
+ ),array(
15162
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong > Ping Pong Robot Accessories"),
15163
+ 'value' => 5050
15164
+ ),array(
15165
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong > Ping Pong Robots"),
15166
+ 'value' => 5051
15167
+ ),array(
15168
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Ping Pong > Ping Pong Tables"),
15169
+ 'value' => 5052
15170
+ ),array(
15171
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Table Shuffleboard"),
15172
+ 'value' => 5053
15173
+ ),array(
15174
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Table Shuffleboard > Shuffleboard Tables"),
15175
+ 'value' => 5054
15176
+ ),array(
15177
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Table Shuffleboard > Table Shuffleboard Powder"),
15178
+ 'value' => 5055
15179
+ ),array(
15180
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Indoor Games > Table Shuffleboard > Table Shuffleboard Pucks"),
15181
+ 'value' => 5056
15182
+ ),array(
15183
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping"),
15184
+ 'value' => 5057
15185
+ ),array(
15186
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Bungee Jumping"),
15187
+ 'value' => 5058
15188
+ ),array(
15189
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Jumping Stilts"),
15190
+ 'value' => 5059
15191
+ ),array(
15192
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Pogo Sticks"),
15193
+ 'value' => 5060
15194
+ ),array(
15195
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampoline Accessories"),
15196
+ 'value' => 5061
15197
+ ),array(
15198
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampoline Accessories > Trampoline Anchors"),
15199
+ 'value' => 5062
15200
+ ),array(
15201
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampoline Accessories > Trampoline Ladders"),
15202
+ 'value' => 5063
15203
+ ),array(
15204
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampoline Accessories > Trampoline Mats"),
15205
+ 'value' => 5064
15206
+ ),array(
15207
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampoline Accessories > Trampoline Nets"),
15208
+ 'value' => 5065
15209
+ ),array(
15210
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampoline Accessories > Trampoline Safety Pads"),
15211
+ 'value' => 5066
15212
+ ),array(
15213
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampoline Accessories > Trampoline Springs"),
15214
+ 'value' => 5067
15215
+ ),array(
15216
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Jumping > Trampolines"),
15217
+ 'value' => 5068
15218
+ ),array(
15219
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation"),
15220
+ 'value' => 5069
15221
+ ),array(
15222
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery"),
15223
+ 'value' => 5070
15224
+ ),array(
15225
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Archery Armguards"),
15226
+ 'value' => 5071
15227
+ ),array(
15228
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Archery Bow Cases"),
15229
+ 'value' => 5072
15230
+ ),array(
15231
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Archery Targets"),
15232
+ 'value' => 5073
15233
+ ),array(
15234
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Arrow Parts & Accessories"),
15235
+ 'value' => 5074
15236
+ ),array(
15237
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Arrows"),
15238
+ 'value' => 5075
15239
+ ),array(
15240
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Compound Bows"),
15241
+ 'value' => 5076
15242
+ ),array(
15243
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Crossbows"),
15244
+ 'value' => 5077
15245
+ ),array(
15246
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Quivers"),
15247
+ 'value' => 5078
15248
+ ),array(
15249
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Archery > Recurve & Longbows"),
15250
+ 'value' => 5079
15251
+ ),array(
15252
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking"),
15253
+ 'value' => 5080
15254
+ ),array(
15255
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camp Furniture"),
15256
+ 'value' => 5081
15257
+ ),array(
15258
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camp Furniture > Air Mattress Accessories"),
15259
+ 'value' => 5082
15260
+ ),array(
15261
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camp Furniture > Air Mattresses"),
15262
+ 'value' => 5083
15263
+ ),array(
15264
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camp Furniture > Cots"),
15265
+ 'value' => 5084
15266
+ ),array(
15267
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camping Cookware & Dinnerware"),
15268
+ 'value' => 5085
15269
+ ),array(
15270
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camping Lights & Lanterns"),
15271
+ 'value' => 5086
15272
+ ),array(
15273
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camping Tools"),
15274
+ 'value' => 5087
15275
+ ),array(
15276
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camping Tools > Knives & Blades"),
15277
+ 'value' => 5088
15278
+ ),array(
15279
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camping Tools > Knives & Blades > Hunting & Survival Knives"),
15280
+ 'value' => 5089
15281
+ ),array(
15282
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Camping Tools > Multifunction Tools & Knives"),
15283
+ 'value' => 5090
15284
+ ),array(
15285
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Chemical Hand Warmers"),
15286
+ 'value' => 5091
15287
+ ),array(
15288
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Compression Sacks"),
15289
+ 'value' => 5092
15290
+ ),array(
15291
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Crampons"),
15292
+ 'value' => 5093
15293
+ ),array(
15294
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Emergency Blankets"),
15295
+ 'value' => 5094
15296
+ ),array(
15297
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Freeze-Dried Food"),
15298
+ 'value' => 5095
15299
+ ),array(
15300
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Hiking Pole Accessories"),
15301
+ 'value' => 5096
15302
+ ),array(
15303
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Hiking Poles"),
15304
+ 'value' => 5097
15305
+ ),array(
15306
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Mosquito Nets"),
15307
+ 'value' => 5098
15308
+ ),array(
15309
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Navigational Compasses"),
15310
+ 'value' => 5099
15311
+ ),array(
15312
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Portable Toilets"),
15313
+ 'value' => 5100
15314
+ ),array(
15315
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Portable Urination Devices"),
15316
+ 'value' => 5101
15317
+ ),array(
15318
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Portable Water Filters & Purifiers"),
15319
+ 'value' => 5102
15320
+ ),array(
15321
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Sleeping Bag Liners"),
15322
+ 'value' => 5103
15323
+ ),array(
15324
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Sleeping Bags"),
15325
+ 'value' => 5104
15326
+ ),array(
15327
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Sleeping Pads"),
15328
+ 'value' => 5105
15329
+ ),array(
15330
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Tent Accessories"),
15331
+ 'value' => 5106
15332
+ ),array(
15333
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Tent Accessories > Tent Footprints"),
15334
+ 'value' => 5107
15335
+ ),array(
15336
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Tent Accessories > Tent Poles & Stakes"),
15337
+ 'value' => 5108
15338
+ ),array(
15339
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Tent Accessories > Tent Vestibules"),
15340
+ 'value' => 5109
15341
+ ),array(
15342
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Camping, Backpacking & Hiking > Tents"),
15343
+ 'value' => 5110
15344
+ ),array(
15345
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing"),
15346
+ 'value' => 5111
15347
+ ),array(
15348
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Ice Climbing"),
15349
+ 'value' => 5112
15350
+ ),array(
15351
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Ice Climbing > Ice Climbing Tools"),
15352
+ 'value' => 5113
15353
+ ),array(
15354
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Ice Climbing > Ice Screws"),
15355
+ 'value' => 5114
15356
+ ),array(
15357
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing"),
15358
+ 'value' => 5115
15359
+ ),array(
15360
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Ascenders & Descenders"),
15361
+ 'value' => 5116
15362
+ ),array(
15363
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Belay Devices"),
15364
+ 'value' => 5117
15365
+ ),array(
15366
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Carabiners"),
15367
+ 'value' => 5118
15368
+ ),array(
15369
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Chalk"),
15370
+ 'value' => 5119
15371
+ ),array(
15372
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Chalk Bags"),
15373
+ 'value' => 5120
15374
+ ),array(
15375
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Harnesses"),
15376
+ 'value' => 5121
15377
+ ),array(
15378
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Helmets"),
15379
+ 'value' => 5122
15380
+ ),array(
15381
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Protection Devices"),
15382
+ 'value' => 5123
15383
+ ),array(
15384
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Rope"),
15385
+ 'value' => 5124
15386
+ ),array(
15387
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Rope Bags"),
15388
+ 'value' => 5125
15389
+ ),array(
15390
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Climbing Webbing"),
15391
+ 'value' => 5126
15392
+ ),array(
15393
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Crash Pads"),
15394
+ 'value' => 5127
15395
+ ),array(
15396
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Indoor Climbing Holds"),
15397
+ 'value' => 5128
15398
+ ),array(
15399
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Climbing > Rock Climbing > Quickdraws"),
15400
+ 'value' => 5129
15401
+ ),array(
15402
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling"),
15403
+ 'value' => 5130
15404
+ ),array(
15405
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories"),
15406
+ 'value' => 5131
15407
+ ),array(
15408
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Bags & Panniers"),
15409
+ 'value' => 5132
15410
+ ),array(
15411
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Baskets"),
15412
+ 'value' => 5133
15413
+ ),array(
15414
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Bells & Horns"),
15415
+ 'value' => 5134
15416
+ ),array(
15417
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Cages"),
15418
+ 'value' => 5135
15419
+ ),array(
15420
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Child Seats"),
15421
+ 'value' => 5136
15422
+ ),array(
15423
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Computer Accessories"),
15424
+ 'value' => 5137
15425
+ ),array(
15426
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Computers"),
15427
+ 'value' => 5138
15428
+ ),array(
15429
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Covers"),
15430
+ 'value' => 5139
15431
+ ),array(
15432
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Fenders"),
15433
+ 'value' => 5140
15434
+ ),array(
15435
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Front & Rear Racks"),
15436
+ 'value' => 5141
15437
+ ),array(
15438
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Lights & Reflectors"),
15439
+ 'value' => 5142
15440
+ ),array(
15441
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Locks"),
15442
+ 'value' => 5143
15443
+ ),array(
15444
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Mirrors"),
15445
+ 'value' => 5144
15446
+ ),array(
15447
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Pumps"),
15448
+ 'value' => 5145
15449
+ ),array(
15450
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Saddle Pads & Seat Covers"),
15451
+ 'value' => 5146
15452
+ ),array(
15453
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Shock Pumps"),
15454
+ 'value' => 5147
15455
+ ),array(
15456
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Spoke Beads"),
15457
+ 'value' => 5148
15458
+ ),array(
15459
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Stands & Storage"),
15460
+ 'value' => 5149
15461
+ ),array(
15462
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Surfboard Racks"),
15463
+ 'value' => 5150
15464
+ ),array(
15465
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Toe Straps & Clips"),
15466
+ 'value' => 5151
15467
+ ),array(
15468
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Tools, Cleaners & Lubricants"),
15469
+ 'value' => 5152
15470
+ ),array(
15471
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Tools, Cleaners & Lubricants > Bicycle Lubrication"),
15472
+ 'value' => 5153
15473
+ ),array(
15474
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Tools, Cleaners & Lubricants > Bicycle Spoke Wrenches"),
15475
+ 'value' => 5154
15476
+ ),array(
15477
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Trailers"),
15478
+ 'value' => 5155
15479
+ ),array(
15480
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Trainers"),
15481
+ 'value' => 5156
15482
+ ),array(
15483
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Training Wheels"),
15484
+ 'value' => 5157
15485
+ ),array(
15486
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Accessories > Bicycle Transport Bags & Cases"),
15487
+ 'value' => 5158
15488
+ ),array(
15489
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear"),
15490
+ 'value' => 5159
15491
+ ),array(
15492
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Cleat Accessories"),
15493
+ 'value' => 5160
15494
+ ),array(
15495
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Cleat Accessories > Bicycle Cleat Bolts"),
15496
+ 'value' => 5161
15497
+ ),array(
15498
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Cleat Accessories > Bicycle Cleat Covers"),
15499
+ 'value' => 5162
15500
+ ),array(
15501
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Cleat Accessories > Bicycle Cleat Shims & Wedges"),
15502
+ 'value' => 5163
15503
+ ),array(
15504
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Cleats"),
15505
+ 'value' => 5164
15506
+ ),array(
15507
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Gloves"),
15508
+ 'value' => 5165
15509
+ ),array(
15510
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Helmet Covers"),
15511
+ 'value' => 5166
15512
+ ),array(
15513
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Helmets"),
15514
+ 'value' => 5167
15515
+ ),array(
15516
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Gear > Bicycle Shoe Covers"),
15517
+ 'value' => 5168
15518
+ ),array(
15519
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts"),
15520
+ 'value' => 5169
15521
+ ),array(
15522
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts"),
15523
+ 'value' => 5170
15524
+ ),array(
15525
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Calipers"),
15526
+ 'value' => 5171
15527
+ ),array(
15528
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Levers"),
15529
+ 'value' => 5172
15530
+ ),array(
15531
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Rotors"),
15532
+ 'value' => 5173
15533
+ ),array(
15534
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Brake Parts > Bicycle Brake Sets"),
15535
+ 'value' => 5174
15536
+ ),array(
15537
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts"),
15538
+ 'value' => 5175
15539
+ ),array(
15540
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Bottom Brackets"),
15541
+ 'value' => 5176
15542
+ ),array(
15543
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Cassettes"),
15544
+ 'value' => 5177
15545
+ ),array(
15546
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Chainrings"),
15547
+ 'value' => 5178
15548
+ ),array(
15549
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Chains"),
15550
+ 'value' => 5179
15551
+ ),array(
15552
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Cranks"),
15553
+ 'value' => 5180
15554
+ ),array(
15555
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Derailleurs"),
15556
+ 'value' => 5181
15557
+ ),array(
15558
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Pedals"),
15559
+ 'value' => 5182
15560
+ ),array(
15561
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Drivetrain Parts > Bicycle Shifters"),
15562
+ 'value' => 5183
15563
+ ),array(
15564
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Forks"),
15565
+ 'value' => 5184
15566
+ ),array(
15567
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Frames"),
15568
+ 'value' => 5185
15569
+ ),array(
15570
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Grips & Handlebar Tape"),
15571
+ 'value' => 5186
15572
+ ),array(
15573
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Handlebar Extensions"),
15574
+ 'value' => 5187
15575
+ ),array(
15576
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Handlebars"),
15577
+ 'value' => 5188
15578
+ ),array(
15579
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts"),
15580
+ 'value' => 5189
15581
+ ),array(
15582
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts > Bicycle Headset Bearings"),
15583
+ 'value' => 5190
15584
+ ),array(
15585
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headset Parts > Bicycle Headset Spacers"),
15586
+ 'value' => 5191
15587
+ ),array(
15588
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Headsets"),
15589
+ 'value' => 5192
15590
+ ),array(
15591
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Saddles"),
15592
+ 'value' => 5193
15593
+ ),array(
15594
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Seatpost Clamps"),
15595
+ 'value' => 5194
15596
+ ),array(
15597
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Seatposts"),
15598
+ 'value' => 5195
15599
+ ),array(
15600
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Small Parts"),
15601
+ 'value' => 5196
15602
+ ),array(
15603
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Small Parts > Bicycle Accessory Mounts & Brackets"),
15604
+ 'value' => 5197
15605
+ ),array(
15606
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Small Parts > Bicycle Seatpost Shims"),
15607
+ 'value' => 5198
15608
+ ),array(
15609
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Stems"),
15610
+ 'value' => 5199
15611
+ ),array(
15612
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tires"),
15613
+ 'value' => 5200
15614
+ ),array(
15615
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Tubes"),
15616
+ 'value' => 5201
15617
+ ),array(
15618
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts"),
15619
+ 'value' => 5202
15620
+ ),array(
15621
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Foot Pegs"),
15622
+ 'value' => 5203
15623
+ ),array(
15624
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Hubs"),
15625
+ 'value' => 5204
15626
+ ),array(
15627
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Spokes"),
15628
+ 'value' => 5205
15629
+ ),array(
15630
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Nipples"),
15631
+ 'value' => 5206
15632
+ ),array(
15633
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheel Parts > Bicycle Wheel Rims"),
15634
+ 'value' => 5207
15635
+ ),array(
15636
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycle Parts > Bicycle Wheels"),
15637
+ 'value' => 5208
15638
+ ),array(
15639
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles"),
15640
+ 'value' => 5209
15641
+ ),array(
15642
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles > Cruisers"),
15643
+ 'value' => 5210
15644
+ ),array(
15645
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles > Electric Bicycles"),
15646
+ 'value' => 5211
15647
+ ),array(
15648
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles > Hybrid Bicycles"),
15649
+ 'value' => 5212
15650
+ ),array(
15651
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles > Mountain Bicycles"),
15652
+ 'value' => 5213
15653
+ ),array(
15654
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles > Recumbent Bicycles"),
15655
+ 'value' => 5214
15656
+ ),array(
15657
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles > Road Bicycles"),
15658
+ 'value' => 5215
15659
+ ),array(
15660
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Bicycles > Triathlon Bicycles"),
15661
+ 'value' => 5216
15662
+ ),array(
15663
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Tricycle Accessories"),
15664
+ 'value' => 5217
15665
+ ),array(
15666
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Tricycles"),
15667
+ 'value' => 5218
15668
+ ),array(
15669
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Tricycles > Recumbent Tricycles"),
15670
+ 'value' => 5219
15671
+ ),array(
15672
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Unicycle Accessories"),
15673
+ 'value' => 5220
15674
+ ),array(
15675
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Cycling > Unicycles"),
15676
+ 'value' => 5221
15677
+ ),array(
15678
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Deck Shuffleboard"),
15679
+ 'value' => 5222
15680
+ ),array(
15681
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Deck Shuffleboard > Deck Shuffleboard Cues"),
15682
+ 'value' => 5223
15683
+ ),array(
15684
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Deck Shuffleboard > Deck Shuffleboard Pucks"),
15685
+ 'value' => 5224
15686
+ ),array(
15687
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Disc Golf"),
15688
+ 'value' => 5225
15689
+ ),array(
15690
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Disc Golf > Disc Golf Bags"),
15691
+ 'value' => 5226
15692
+ ),array(
15693
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Disc Golf > Disc Golf Baskets"),
15694
+ 'value' => 5227
15695
+ ),array(
15696
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Disc Golf > Disc Golf Discs"),
15697
+ 'value' => 5228
15698
+ ),array(
15699
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian"),
15700
+ 'value' => 5229
15701
+ ),array(
15702
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Boots & Leg Wraps"),
15703
+ 'value' => 5230
15704
+ ),array(
15705
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Boots & Leg Wraps > Bell Boots"),
15706
+ 'value' => 5231
15707
+ ),array(
15708
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Boots & Leg Wraps > Splint Boots"),
15709
+ 'value' => 5232
15710
+ ),array(
15711
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Supplies"),
15712
+ 'value' => 5233
15713
+ ),array(
15714
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Supplies > Horse Blankets & Sheets"),
15715
+ 'value' => 5234
15716
+ ),array(
15717
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Supplies > Horse Feed"),
15718
+ 'value' => 5235
15719
+ ),array(
15720
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Supplies > Horse Grooming"),
15721
+ 'value' => 5236
15722
+ ),array(
15723
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Supplies > Horse Grooming > Horse Clippers & Trimmers"),
15724
+ 'value' => 5237
15725
+ ),array(
15726
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Supplies > Horse Treats"),
15727
+ 'value' => 5238
15728
+ ),array(
15729
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Supplies > Horse Vitamins & Supplements"),
15730
+ 'value' => 5239
15731
+ ),array(
15732
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack"),
15733
+ 'value' => 5240
15734
+ ),array(
15735
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Bridles"),
15736
+ 'value' => 5241
15737
+ ),array(
15738
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Cinches"),
15739
+ 'value' => 5242
15740
+ ),array(
15741
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Bits"),
15742
+ 'value' => 5243
15743
+ ),array(
15744
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Horse Harnesses"),
15745
+ 'value' => 5244
15746
+ ),array(
15747
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Reins"),
15748
+ 'value' => 5245
15749
+ ),array(
15750
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack > Saddles"),
15751
+ 'value' => 5246
15752
+ ),array(
15753
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories"),
15754
+ 'value' => 5247
15755
+ ),array(
15756
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Horse Tack Accessories > Saddle Racks"),
15757
+ 'value' => 5248
15758
+ ),array(
15759
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Riding Gear"),
15760
+ 'value' => 5249
15761
+ ),array(
15762
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Riding Gear > Equestrian Gloves"),
15763
+ 'value' => 5250
15764
+ ),array(
15765
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Riding Gear > Equestrian Helmets"),
15766
+ 'value' => 5251
15767
+ ),array(
15768
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Riding Gear > Riding Crops"),
15769
+ 'value' => 5252
15770
+ ),array(
15771
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Equestrian > Riding Gear > Riding Pants"),
15772
+ 'value' => 5253
15773
+ ),array(
15774
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing"),
15775
+ 'value' => 5254
15776
+ ),array(
15777
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing & Hunting Waders"),
15778
+ 'value' => 5255
15779
+ ),array(
15780
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Bait & Chum Containers"),
15781
+ 'value' => 5256
15782
+ ),array(
15783
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Floats"),
15784
+ 'value' => 5257
15785
+ ),array(
15786
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Gaffs"),
15787
+ 'value' => 5258
15788
+ ),array(
15789
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Hook Removal Tools"),
15790
+ 'value' => 5259
15791
+ ),array(
15792
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Hooks"),
15793
+ 'value' => 5260
15794
+ ),array(
15795
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Lines & Leaders"),
15796
+ 'value' => 5261
15797
+ ),array(
15798
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Lures"),
15799
+ 'value' => 5262
15800
+ ),array(
15801
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Lures > Fishing Flies"),
15802
+ 'value' => 5263
15803
+ ),array(
15804
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Nets"),
15805
+ 'value' => 5264
15806
+ ),array(
15807
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Reels"),
15808
+ 'value' => 5265
15809
+ ),array(
15810
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Rods"),
15811
+ 'value' => 5266
15812
+ ),array(
15813
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Sinkers"),
15814
+ 'value' => 5267
15815
+ ),array(
15816
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Snaps & Swivels"),
15817
+ 'value' => 5268
15818
+ ),array(
15819
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Spears"),
15820
+ 'value' => 5269
15821
+ ),array(
15822
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fishing Traps"),
15823
+ 'value' => 5270
15824
+ ),array(
15825
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials"),
15826
+ 'value' => 5271
15827
+ ),array(
15828
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials > Fishing Beads"),
15829
+ 'value' => 5272
15830
+ ),array(
15831
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Fly Tying Materials > Fishing Yarn"),
15832
+ 'value' => 5273
15833
+ ),array(
15834
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Live Bait"),
15835
+ 'value' => 5274
15836
+ ),array(
15837
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Fishing > Tackle Bags & Boxes"),
15838
+ 'value' => 5275
15839
+ ),array(
15840
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Geocaching"),
15841
+ 'value' => 5276
15842
+ ),array(
15843
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Geocaching > Geocaches"),
15844
+ 'value' => 5277
15845
+ ),array(
15846
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Geocaching > Geocaching Log Sheets"),
15847
+ 'value' => 5278
15848
+ ),array(
15849
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Geocaching > Geocaching Trackables"),
15850
+ 'value' => 5279
15851
+ ),array(
15852
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf"),
15853
+ 'value' => 5280
15854
+ ),array(
15855
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Divot Tools"),
15856
+ 'value' => 5281
15857
+ ),array(
15858
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories"),
15859
+ 'value' => 5282
15860
+ ),array(
15861
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories > Golf Bag Carts"),
15862
+ 'value' => 5283
15863
+ ),array(
15864
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Bag Accessories > Golf Bag Covers & Cases"),
15865
+ 'value' => 5284
15866
+ ),array(
15867
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Bags"),
15868
+ 'value' => 5285
15869
+ ),array(
15870
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Ball Markers"),
15871
+ 'value' => 5286
15872
+ ),array(
15873
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Balls"),
15874
+ 'value' => 5287
15875
+ ),array(
15876
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories"),
15877
+ 'value' => 5288
15878
+ ),array(
15879
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Grips"),
15880
+ 'value' => 5289
15881
+ ),array(
15882
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Club Parts & Accessories > Golf Club Head Covers"),
15883
+ 'value' => 5290
15884
+ ),array(
15885
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Clubs"),
15886
+ 'value' => 5291
15887
+ ),array(
15888
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Flags"),
15889
+ 'value' => 5292
15890
+ ),array(
15891
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Gloves"),
15892
+ 'value' => 5293
15893
+ ),array(
15894
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Kits"),
15895
+ 'value' => 5294
15896
+ ),array(
15897
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Tees"),
15898
+ 'value' => 5295
15899
+ ),array(
15900
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Towels"),
15901
+ 'value' => 5296
15902
+ ),array(
15903
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Golf > Golf Training Aids"),
15904
+ 'value' => 5297
15905
+ ),array(
15906
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting"),
15907
+ 'value' => 5298
15908
+ ),array(
15909
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting & Shooting Protective Gear"),
15910
+ 'value' => 5299
15911
+ ),array(
15912
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting & Shooting Protective Gear > Hunting & Shooting Gloves"),
15913
+ 'value' => 5300
15914
+ ),array(
15915
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting & Shooting Protective Gear > Hunting & Shooting Jackets"),
15916
+ 'value' => 5301
15917
+ ),array(
15918
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Animal Traps"),
15919
+ 'value' => 5302
15920
+ ),array(
15921
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Game Feeders"),
15922
+ 'value' => 5303
15923
+ ),array(
15924
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Hunting Blinds & Screens"),
15925
+ 'value' => 5304
15926
+ ),array(
15927
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Hunting Calls"),
15928
+ 'value' => 5305
15929
+ ),array(
15930
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Hunting Decoys"),
15931
+ 'value' => 5306
15932
+ ),array(
15933
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Hunting Dog Equipment"),
15934
+ 'value' => 5307
15935
+ ),array(
15936
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Hunting Shelters"),
15937
+ 'value' => 5308
15938
+ ),array(
15939
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Tree Stands"),
15940
+ 'value' => 5309
15941
+ ),array(
15942
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hunting > Wildlife Attractant"),
15943
+ 'value' => 5310
15944
+ ),array(
15945
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hydration System Accessories"),
15946
+ 'value' => 5311
15947
+ ),array(
15948
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Hydration Systems"),
15949
+ 'value' => 5312
15950
+ ),array(
15951
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Kite Buggying"),
15952
+ 'value' => 5313
15953
+ ),array(
15954
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Kite Buggying > Kite Buggies"),
15955
+ 'value' => 5314
15956
+ ),array(
15957
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Kite Buggying Accessories"),
15958
+ 'value' => 5315
15959
+ ),array(
15960
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games"),
15961
+ 'value' => 5316
15962
+ ),array(
15963
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Bean Bag Toss"),
15964
+ 'value' => 5317
15965
+ ),array(
15966
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Bocce"),
15967
+ 'value' => 5318
15968
+ ),array(
15969
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Croquet"),
15970
+ 'value' => 5319
15971
+ ),array(
15972
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Horseshoe Toss"),
15973
+ 'value' => 5320
15974
+ ),array(
15975
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Ladder Golf"),
15976
+ 'value' => 5321
15977
+ ),array(
15978
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Lawn Bowling"),
15979
+ 'value' => 5322
15980
+ ),array(
15981
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Lawn Bowling > Lawn Bowling Bowls"),
15982
+ 'value' => 5323
15983
+ ),array(
15984
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Lawn Bowling > Lawn Bowling Jacks"),
15985
+ 'value' => 5324
15986
+ ),array(
15987
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Lawn Darts"),
15988
+ 'value' => 5325
15989
+ ),array(
15990
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Ring Toss"),
15991
+ 'value' => 5326
15992
+ ),array(
15993
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Lawn Games > Washer Pitching"),
15994
+ 'value' => 5327
15995
+ ),array(
15996
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Motorsports"),
15997
+ 'value' => 5328
15998
+ ),array(
15999
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Motorsports > Auto Racing"),
16000
+ 'value' => 5329
16001
+ ),array(
16002
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Reflective Fitness Clothing"),
16003
+ 'value' => 5330
16004
+ ),array(
16005
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Reflective Fitness Clothing > Reflective Belts"),
16006
+ 'value' => 5331
16007
+ ),array(
16008
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Riding Scooters"),
16009
+ 'value' => 5332
16010
+ ),array(
16011
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Riding Scooters > Kick Scooters"),
16012
+ 'value' => 5333
16013
+ ),array(
16014
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Riding Scooters > Powered Scooters"),
16015
+ 'value' => 5334
16016
+ ),array(
16017
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Running"),
16018
+ 'value' => 5335
16019
+ ),array(
16020
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games"),
16021
+ 'value' => 5336
16022
+ ),array(
16023
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Airsoft"),
16024
+ 'value' => 5337
16025
+ ),array(
16026
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Airsoft > Airsoft Gun Parts & Accessories"),
16027
+ 'value' => 5338
16028
+ ),array(
16029
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Airsoft > Airsoft Gun Parts & Accessories > Airsoft Gun Batteries"),
16030
+ 'value' => 5339
16031
+ ),array(
16032
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Airsoft > Airsoft Guns"),
16033
+ 'value' => 5340
16034
+ ),array(
16035
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Airsoft > Airsoft Pellets"),
16036
+ 'value' => 5341
16037
+ ),array(
16038
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Airsoft > Airsoft Protective Gear"),
16039
+ 'value' => 5342
16040
+ ),array(
16041
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Clay Pigeon Shooting"),
16042
+ 'value' => 5343
16043
+ ),array(
16044
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Clay Pigeon Shooting > Clay Pigeon Throwers"),
16045
+ 'value' => 5344
16046
+ ),array(
16047
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Clay Pigeon Shooting > Clay Pigeons"),
16048
+ 'value' => 5345
16049
+ ),array(
16050
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball"),
16051
+ 'value' => 5346
16052
+ ),array(
16053
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Air Tanks"),
16054
+ 'value' => 5347
16055
+ ),array(
16056
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Grenade Launchers"),
16057
+ 'value' => 5348
16058
+ ),array(
16059
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Grenades"),
16060
+ 'value' => 5349
16061
+ ),array(
16062
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Gun Parts"),
16063
+ 'value' => 5350
16064
+ ),array(
16065
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Gun Parts > Paintball Gun Barrels"),
16066
+ 'value' => 5351
16067
+ ),array(
16068
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Gun Parts > Paintball Hoppers"),
16069
+ 'value' => 5352
16070
+ ),array(
16071
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Guns"),
16072
+ 'value' => 5353
16073
+ ),array(
16074
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Harnesses & Packs"),
16075
+ 'value' => 5354
16076
+ ),array(
16077
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Protective Gear"),
16078
+ 'value' => 5355
16079
+ ),array(
16080
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Protective Gear > Paintball Gloves"),
16081
+ 'value' => 5356
16082
+ ),array(
16083
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Protective Gear > Paintball Goggles & Masks"),
16084
+ 'value' => 5357
16085
+ ),array(
16086
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Protective Gear > Paintball Pads"),
16087
+ 'value' => 5358
16088
+ ),array(
16089
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintball Protective Gear > Paintball Vests"),
16090
+ 'value' => 5359
16091
+ ),array(
16092
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Paintball > Paintballs"),
16093
+ 'value' => 5360
16094
+ ),array(
16095
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Shooting Games > Shooting Targets"),
16096
+ 'value' => 5361
16097
+ ),array(
16098
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding"),
16099
+ 'value' => 5362
16100
+ ),array(
16101
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skate Rails"),
16102
+ 'value' => 5363
16103
+ ),array(
16104
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skate Ramps"),
16105
+ 'value' => 5364
16106
+ ),array(
16107
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts"),
16108
+ 'value' => 5365
16109
+ ),array(
16110
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Bearings"),
16111
+ 'value' => 5366
16112
+ ),array(
16113
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Decks"),
16114
+ 'value' => 5367
16115
+ ),array(
16116
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Trucks"),
16117
+ 'value' => 5368
16118
+ ),array(
16119
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Parts > Skateboard Wheels"),
16120
+ 'value' => 5369
16121
+ ),array(
16122
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Protective Gear"),
16123
+ 'value' => 5370
16124
+ ),array(
16125
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Protective Gear > Skateboard Helmets"),
16126
+ 'value' => 5371
16127
+ ),array(
16128
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Protective Gear > Skateboard Pads"),
16129
+ 'value' => 5372
16130
+ ),array(
16131
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboard Protective Gear > Skateboarding Gloves"),
16132
+ 'value' => 5373
16133
+ ),array(
16134
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skateboarding > Skateboards"),
16135
+ 'value' => 5374
16136
+ ),array(
16137
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating"),
16138
+ 'value' => 5375
16139
+ ),array(
16140
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Figure Skate Boots"),
16141
+ 'value' => 5376
16142
+ ),array(
16143
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Ice Skate Blades"),
16144
+ 'value' => 5377
16145
+ ),array(
16146
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Ice Skate Sharpeners"),
16147
+ 'value' => 5378
16148
+ ),array(
16149
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Ice Skates"),
16150
+ 'value' => 5379
16151
+ ),array(
16152
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Ice Skates > Figure Skates"),
16153
+ 'value' => 5380
16154
+ ),array(
16155
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Ice Skates > Ice Hockey Skates"),
16156
+ 'value' => 5381
16157
+ ),array(
16158
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Inline Skates"),
16159
+ 'value' => 5382
16160
+ ),array(
16161
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Lace Tighteners"),
16162
+ 'value' => 5383
16163
+ ),array(
16164
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Roller Skates"),
16165
+ 'value' => 5384
16166
+ ),array(
16167
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Skate Blade Guards"),
16168
+ 'value' => 5385
16169
+ ),array(
16170
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Skate Parts"),
16171
+ 'value' => 5386
16172
+ ),array(
16173
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Skating > Skating Helmets & Pads"),
16174
+ 'value' => 5387
16175
+ ),array(
16176
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Stadium Seats & Cushions"),
16177
+ 'value' => 5388
16178
+ ),array(
16179
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Tetherball"),
16180
+ 'value' => 5389
16181
+ ),array(
16182
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field"),
16183
+ 'value' => 5390
16184
+ ),array(
16185
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Discuses"),
16186
+ 'value' => 5391
16187
+ ),array(
16188
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > High Jump Bars"),
16189
+ 'value' => 5392
16190
+ ),array(
16191
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > High Jump Pits"),
16192
+ 'value' => 5393
16193
+ ),array(
16194
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Hurdles"),
16195
+ 'value' => 5394
16196
+ ),array(
16197
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Javelins"),
16198
+ 'value' => 5395
16199
+ ),array(
16200
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Pole Vault Pits"),
16201
+ 'value' => 5396
16202
+ ),array(
16203
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Relay Batons"),
16204
+ 'value' => 5397
16205
+ ),array(
16206
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Shot Puts"),
16207
+ 'value' => 5398
16208
+ ),array(
16209
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Starter Pistols"),
16210
+ 'value' => 5399
16211
+ ),array(
16212
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Throwing Hammers"),
16213
+ 'value' => 5400
16214
+ ),array(
16215
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Outdoor Recreation > Track & Field > Vaulting Poles"),
16216
+ 'value' => 5401
16217
+ ),array(
16218
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports"),
16219
+ 'value' => 5402
16220
+ ),array(
16221
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Badminton"),
16222
+ 'value' => 5403
16223
+ ),array(
16224
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Badminton > Badminton Nets"),
16225
+ 'value' => 5404
16226
+ ),array(
16227
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Badminton > Badminton Rackets"),
16228
+ 'value' => 5405
16229
+ ),array(
16230
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Badminton > Shuttlecocks"),
16231
+ 'value' => 5406
16232
+ ),array(
16233
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Paddle Ball Sets"),
16234
+ 'value' => 5407
16235
+ ),array(
16236
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Paddle Tennis"),
16237
+ 'value' => 5408
16238
+ ),array(
16239
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Pickleball"),
16240
+ 'value' => 5409
16241
+ ),array(
16242
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Platform Tennis"),
16243
+ 'value' => 5410
16244
+ ),array(
16245
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Racquetball"),
16246
+ 'value' => 5411
16247
+ ),array(
16248
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Racquetball > Racquetball Protective Gear"),
16249
+ 'value' => 5412
16250
+ ),array(
16251
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Racquetball > Racquetball Protective Gear > Squash & Racquetball Goggles"),
16252
+ 'value' => 5413
16253
+ ),array(
16254
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Racquetball > Racquetball Rackets"),
16255
+ 'value' => 5414
16256
+ ),array(
16257
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Racquetball > Racquetballs"),
16258
+ 'value' => 5415
16259
+ ),array(
16260
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Squash"),
16261
+ 'value' => 5416
16262
+ ),array(
16263
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Squash > Squash Balls"),
16264
+ 'value' => 5417
16265
+ ),array(
16266
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Squash > Squash Protective Gear"),
16267
+ 'value' => 5418
16268
+ ),array(
16269
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Squash > Squash Rackets"),
16270
+ 'value' => 5419
16271
+ ),array(
16272
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis"),
16273
+ 'value' => 5420
16274
+ ),array(
16275
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Ball Hoppers"),
16276
+ 'value' => 5421
16277
+ ),array(
16278
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Ball Machines"),
16279
+ 'value' => 5422
16280
+ ),array(
16281
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Ball Savers"),
16282
+ 'value' => 5423
16283
+ ),array(
16284
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Balls"),
16285
+ 'value' => 5424
16286
+ ),array(
16287
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Nets"),
16288
+ 'value' => 5425
16289
+ ),array(
16290
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Racket Accessories"),
16291
+ 'value' => 5426
16292
+ ),array(
16293
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Racket Accessories > Racket Grip Tape"),
16294
+ 'value' => 5427
16295
+ ),array(
16296
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Racket Accessories > Racket Vibration Dampeners"),
16297
+ 'value' => 5428
16298
+ ),array(
16299
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Racket Accessories > Tennis Racket Bags"),
16300
+ 'value' => 5429
16301
+ ),array(
16302
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Racket Accessories > Tennis Racket Grommets"),
16303
+ 'value' => 5430
16304
+ ),array(
16305
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Racket Accessories > Tennis Racket String"),
16306
+ 'value' => 5431
16307
+ ),array(
16308
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Racquet Sports > Tennis > Tennis Rackets"),
16309
+ 'value' => 5432
16310
+ ),array(
16311
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports"),
16312
+ 'value' => 5433
16313
+ ),array(
16314
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Ball Carrying Bags"),
16315
+ 'value' => 5434
16316
+ ),array(
16317
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Ball Pump Accessories"),
16318
+ 'value' => 5435
16319
+ ),array(
16320
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Ball Pump Accessories > Ball Pump Needles"),
16321
+ 'value' => 5436
16322
+ ),array(
16323
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Ball Pumps"),
16324
+ 'value' => 5437
16325
+ ),array(
16326
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball"),
16327
+ 'value' => 5438
16328
+ ),array(
16329
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball & Softball Gloves"),
16330
+ 'value' => 5439
16331
+ ),array(
16332
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball & Softball Gloves > Baseball Gloves & Mitts"),
16333
+ 'value' => 5440
16334
+ ),array(
16335
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball & Softball Gloves > Softball Gloves & Mitts"),
16336
+ 'value' => 5441
16337
+ ),array(
16338
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball Bats"),
16339
+ 'value' => 5442
16340
+ ),array(
16341
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball Diamond Bases"),
16342
+ 'value' => 5443
16343
+ ),array(
16344
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball Protective Gear"),
16345
+ 'value' => 5444
16346
+ ),array(
16347
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball Protective Gear > Batting Helmets"),
16348
+ 'value' => 5445
16349
+ ),array(
16350
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseball Screens"),
16351
+ 'value' => 5446
16352
+ ),array(
16353
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Baseballs"),
16354
+ 'value' => 5447
16355
+ ),array(
16356
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Batting Gloves"),
16357
+ 'value' => 5448
16358
+ ),array(
16359
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Baseball > Pitching Machines"),
16360
+ 'value' => 5449
16361
+ ),array(
16362
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball"),
16363
+ 'value' => 5450
16364
+ ),array(
16365
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketball Hoop Parts & Accessories"),
16366
+ 'value' => 5451
16367
+ ),array(
16368
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketball Hoop Parts & Accessories > Basketball Backboards"),
16369
+ 'value' => 5452
16370
+ ),array(
16371
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketball Hoop Parts & Accessories > Basketball Hoop Padding"),
16372
+ 'value' => 5453
16373
+ ),array(
16374
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketball Hoop Parts & Accessories > Basketball Nets"),
16375
+ 'value' => 5454
16376
+ ),array(
16377
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketball Hoop Parts & Accessories > Basketball Poles"),
16378
+ 'value' => 5455
16379
+ ),array(
16380
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketball Hoop Parts & Accessories > Basketball Rims"),
16381
+ 'value' => 5456
16382
+ ),array(
16383
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketball Hoops"),
16384
+ 'value' => 5457
16385
+ ),array(
16386
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Basketball > Basketballs"),
16387
+ 'value' => 5458
16388
+ ),array(
16389
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Beach Volleyball"),
16390
+ 'value' => 5459
16391
+ ),array(
16392
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Beach Volleyball > Beach Volleyball Balls"),
16393
+ 'value' => 5460
16394
+ ),array(
16395
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Beach Volleyball > Beach Volleyball Nets"),
16396
+ 'value' => 5461
16397
+ ),array(
16398
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Broomball"),
16399
+ 'value' => 5462
16400
+ ),array(
16401
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Broomball > Broomball Sticks"),
16402
+ 'value' => 5463
16403
+ ),array(
16404
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cheerleading"),
16405
+ 'value' => 5464
16406
+ ),array(
16407
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cheerleading > Cheerleading Megaphones"),
16408
+ 'value' => 5465
16409
+ ),array(
16410
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cheerleading > Pom-Poms"),
16411
+ 'value' => 5466
16412
+ ),array(
16413
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cricket"),
16414
+ 'value' => 5467
16415
+ ),array(
16416
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cricket > Cricket Balls"),
16417
+ 'value' => 5468
16418
+ ),array(
16419
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cricket > Cricket Bats"),
16420
+ 'value' => 5469
16421
+ ),array(
16422
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cricket > Cricket Gloves"),
16423
+ 'value' => 5470
16424
+ ),array(
16425
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Cricket > Cricket Helmets"),
16426
+ 'value' => 5471
16427
+ ),array(
16428
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Curling"),
16429
+ 'value' => 5472
16430
+ ),array(
16431
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Field Hockey"),
16432
+ 'value' => 5473
16433
+ ),array(
16434
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Field Hockey > Field Hockey Balls"),
16435
+ 'value' => 5474
16436
+ ),array(
16437
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Field Hockey > Field Hockey Gloves"),
16438
+ 'value' => 5475
16439
+ ),array(
16440
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Field Hockey > Field Hockey Goals"),
16441
+ 'value' => 5476
16442
+ ),array(
16443
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Field Hockey > Field Hockey Sticks"),
16444
+ 'value' => 5477
16445
+ ),array(
16446
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football"),
16447
+ 'value' => 5478
16448
+ ),array(
16449
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Gloves"),
16450
+ 'value' => 5479
16451
+ ),array(
16452
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Goal Posts"),
16453
+ 'value' => 5480
16454
+ ),array(
16455
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Kicking Tees"),
16456
+ 'value' => 5481
16457
+ ),array(
16458
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear"),
16459
+ 'value' => 5482
16460
+ ),array(
16461
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Girdles"),
16462
+ 'value' => 5483
16463
+ ),array(
16464
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Helmet Accessories"),
16465
+ 'value' => 5484
16466
+ ),array(
16467
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Helmet Accessories > Football Chin Straps"),
16468
+ 'value' => 5485
16469
+ ),array(
16470
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Helmet Accessories > Football Face Masks"),
16471
+ 'value' => 5486
16472
+ ),array(
16473
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Helmet Accessories > Football Helmet Padding"),
16474
+ 'value' => 5487
16475
+ ),array(
16476
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Helmet Accessories > Football Helmet Visors"),
16477
+ 'value' => 5488
16478
+ ),array(
16479
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Helmets"),
16480
+ 'value' => 5489
16481
+ ),array(
16482
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Neck Rolls"),
16483
+ 'value' => 5490
16484
+ ),array(
16485
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Protective Gear > Football Shoulder Pads"),
16486
+ 'value' => 5491
16487
+ ),array(
16488
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Football Training Equipment"),
16489
+ 'value' => 5492
16490
+ ),array(
16491
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Football > Footballs"),
16492
+ 'value' => 5493
16493
+ ),array(
16494
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey"),
16495
+ 'value' => 5494
16496
+ ),array(
16497
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Balls & Pucks"),
16498
+ 'value' => 5495
16499
+ ),array(
16500
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Balls & Pucks > Ice Hockey Pucks"),
16501
+ 'value' => 5496
16502
+ ),array(
16503
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Balls & Pucks > Roller Hockey Balls"),
16504
+ 'value' => 5497
16505
+ ),array(
16506
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Goals"),
16507
+ 'value' => 5498
16508
+ ),array(
16509
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Goals > Ice Hockey Goals"),
16510
+ 'value' => 5499
16511
+ ),array(
16512
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Protective Gear"),
16513
+ 'value' => 5500
16514
+ ),array(
16515
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Protective Gear > Hockey Body Pads"),
16516
+ 'value' => 5501
16517
+ ),array(
16518
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Protective Gear > Hockey Gloves"),
16519
+ 'value' => 5502
16520
+ ),array(
16521
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Protective Gear > Hockey Gloves > Ice Hockey Gloves"),
16522
+ 'value' => 5503
16523
+ ),array(
16524
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Protective Gear > Hockey Helmets"),
16525
+ 'value' => 5504
16526
+ ),array(
16527
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Protective Gear > Hockey Helmets > Ice Hockey Helmets"),
16528
+ 'value' => 5505
16529
+ ),array(
16530
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Protective Gear > Hockey Pants"),
16531
+ 'value' => 5506
16532
+ ),array(
16533
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Sledges"),
16534
+ 'value' => 5507
16535
+ ),array(
16536
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Stick Care"),
16537
+ 'value' => 5508
16538
+ ),array(
16539
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Stick Parts"),
16540
+ 'value' => 5509
16541
+ ),array(
16542
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Stick Parts > Hockey Shafts"),
16543
+ 'value' => 5510
16544
+ ),array(
16545
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Stick Parts > Hockey Stick Blades"),
16546
+ 'value' => 5511
16547
+ ),array(
16548
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Sticks"),
16549
+ 'value' => 5512
16550
+ ),array(
16551
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Sticks > Ice Hockey Sticks"),
16552
+ 'value' => 5513
16553
+ ),array(
16554
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Hockey > Hockey Sticks > Roller & Street Hockey Sticks"),
16555
+ 'value' => 5514
16556
+ ),array(
16557
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Indoor Volleyball"),
16558
+ 'value' => 5515
16559
+ ),array(
16560
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Indoor Volleyball > Indoor Volleyball Balls"),
16561
+ 'value' => 5516
16562
+ ),array(
16563
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Indoor Volleyball > Indoor Volleyball Nets"),
16564
+ 'value' => 5517
16565
+ ),array(
16566
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Indoor Volleyball > Volleyball Bags"),
16567
+ 'value' => 5518
16568
+ ),array(
16569
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse"),
16570
+ 'value' => 5519
16571
+ ),array(
16572
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Balls"),
16573
+ 'value' => 5520
16574
+ ),array(
16575
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Goals"),
16576
+ 'value' => 5521
16577
+ ),array(
16578
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Protective Gear"),
16579
+ 'value' => 5522
16580
+ ),array(
16581
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Protective Gear > Lacrosse Arm Guards"),
16582
+ 'value' => 5523
16583
+ ),array(
16584
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Protective Gear > Lacrosse Gloves"),
16585
+ 'value' => 5524
16586
+ ),array(
16587
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Protective Gear > Lacrosse Helmets"),
16588
+ 'value' => 5525
16589
+ ),array(
16590
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Protective Gear > Lacrosse Masks & Goggles"),
16591
+ 'value' => 5526
16592
+ ),array(
16593
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Protective Gear > Lacrosse Shoulder Pads"),
16594
+ 'value' => 5527
16595
+ ),array(
16596
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Stick Parts"),
16597
+ 'value' => 5528
16598
+ ),array(
16599
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Stick Parts > Lacrosse Mesh & String"),
16600
+ 'value' => 5529
16601
+ ),array(
16602
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Stick Parts > Lacrosse Stick Heads"),
16603
+ 'value' => 5530
16604
+ ),array(
16605
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Stick Parts > Lacrosse Stick Shafts"),
16606
+ 'value' => 5531
16607
+ ),array(
16608
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Sticks"),
16609
+ 'value' => 5532
16610
+ ),array(
16611
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Lacrosse > Lacrosse Training Equipment"),
16612
+ 'value' => 5533
16613
+ ),array(
16614
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Referee Accessories"),
16615
+ 'value' => 5534
16616
+ ),array(
16617
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Referee Accessories > Linesman Flags"),
16618
+ 'value' => 5535
16619
+ ),array(
16620
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Referee Accessories > Penalty Cards"),
16621
+ 'value' => 5536
16622
+ ),array(
16623
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Referee Accessories > Referee Whistles"),
16624
+ 'value' => 5537
16625
+ ),array(
16626
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rounders"),
16627
+ 'value' => 5538
16628
+ ),array(
16629
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rounders > Rounders Bats"),
16630
+ 'value' => 5539
16631
+ ),array(
16632
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rounders > Rounders Gloves"),
16633
+ 'value' => 5540
16634
+ ),array(
16635
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rugby"),
16636
+ 'value' => 5541
16637
+ ),array(
16638
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rugby > Rugby Balls"),
16639
+ 'value' => 5542
16640
+ ),array(
16641
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rugby > Rugby Gloves"),
16642
+ 'value' => 5543
16643
+ ),array(
16644
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rugby > Rugby Helmets"),
16645
+ 'value' => 5544
16646
+ ),array(
16647
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rugby > Rugby Posts"),
16648
+ 'value' => 5545
16649
+ ),array(
16650
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Rugby > Rugby Training Equipment"),
16651
+ 'value' => 5546
16652
+ ),array(
16653
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer"),
16654
+ 'value' => 5547
16655
+ ),array(
16656
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Balls"),
16657
+ 'value' => 5548
16658
+ ),array(
16659
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Balls > Futsal Balls"),
16660
+ 'value' => 5549
16661
+ ),array(
16662
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Captain Armbands"),
16663
+ 'value' => 5550
16664
+ ),array(
16665
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Corner Flags"),
16666
+ 'value' => 5551
16667
+ ),array(
16668
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Gloves"),
16669
+ 'value' => 5552
16670
+ ),array(
16671
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Goal Accessories"),
16672
+ 'value' => 5553
16673
+ ),array(
16674
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Goals"),
16675
+ 'value' => 5554
16676
+ ),array(
16677
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Soccer > Soccer Shin Guards"),
16678
+ 'value' => 5555
16679
+ ),array(
16680
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Softball"),
16681
+ 'value' => 5556
16682
+ ),array(
16683
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Softball > Softball Bats"),
16684
+ 'value' => 5557
16685
+ ),array(
16686
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Softball > Softball Protective Gear"),
16687
+ 'value' => 5558
16688
+ ),array(
16689
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Softball > Softballs"),
16690
+ 'value' => 5559
16691
+ ),array(
16692
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Team Sports > Team Handball"),
16693
+ 'value' => 5560
16694
+ ),array(
16695
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports"),
16696
+ 'value' => 5561
16697
+ ),array(
16698
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating"),
16699
+ 'value' => 5562
16700
+ ),array(
16701
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Boating Gloves"),
16702
+ 'value' => 5563
16703
+ ),array(
16704
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Canoeing"),
16705
+ 'value' => 5564
16706
+ ),array(
16707
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Canoeing > Canoeing Accessories"),
16708
+ 'value' => 5565
16709
+ ),array(
16710
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Canoeing > Canoes"),
16711
+ 'value' => 5566
16712
+ ),array(
16713
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Kayaking"),
16714
+ 'value' => 5567
16715
+ ),array(
16716
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Kayaking > Kayaking Accessories"),
16717
+ 'value' => 5568
16718
+ ),array(
16719
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Kayaking > Kayaking Accessories > Spray Skirts"),
16720
+ 'value' => 5569
16721
+ ),array(
16722
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Kayaking > Kayaks"),
16723
+ 'value' => 5570
16724
+ ),array(
16725
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Pedal Boats"),
16726
+ 'value' => 5571
16727
+ ),array(
16728
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Rafts"),
16729
+ 'value' => 5572
16730
+ ),array(
16731
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Rowing"),
16732
+ 'value' => 5573
16733
+ ),array(
16734
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Rowing > Rowing Boats"),
16735
+ 'value' => 5574
16736
+ ),array(
16737
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Rowing > Rowing Seat Pads"),
16738
+ 'value' => 5575
16739
+ ),array(
16740
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Boating > Sailing & Yachting"),
16741
+ 'value' => 5576
16742
+ ),array(
16743
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Kitesurfing"),
16744
+ 'value' => 5577
16745
+ ),array(
16746
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Kitesurfing > Kiteboard Cases"),
16747
+ 'value' => 5578
16748
+ ),array(
16749
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Kitesurfing > Kiteboard Parts"),
16750
+ 'value' => 5579
16751
+ ),array(
16752
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Kitesurfing > Kiteboards"),
16753
+ 'value' => 5580
16754
+ ),array(
16755
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Kitesurfing > Kitesurfing Harnesses"),
16756
+ 'value' => 5581
16757
+ ),array(
16758
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Kitesurfing > Kitesurfing Kites"),
16759
+ 'value' => 5582
16760
+ ),array(
16761
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Life Jacket Accessories"),
16762
+ 'value' => 5583
16763
+ ),array(
16764
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Life Jackets"),
16765
+ 'value' => 5584
16766
+ ),array(
16767
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Paddles & Oars"),
16768
+ 'value' => 5585
16769
+ ),array(
16770
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Rash Guards"),
16771
+ 'value' => 5586
16772
+ ),array(
16773
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling"),
16774
+ 'value' => 5587
16775
+ ),array(
16776
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Buoyancy Compensators"),
16777
+ 'value' => 5588
16778
+ ),array(
16779
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Dive Computers"),
16780
+ 'value' => 5589
16781
+ ),array(
16782
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Diving & Snorkeling Fins"),
16783
+ 'value' => 5590
16784
+ ),array(
16785
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Diving & Snorkeling Masks"),
16786
+ 'value' => 5591
16787
+ ),array(
16788
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Diving Belts"),
16789
+ 'value' => 5592
16790
+ ),array(
16791
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Diving Knives & Shears"),
16792
+ 'value' => 5593
16793
+ ),array(
16794
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Drysuits"),
16795
+ 'value' => 5594
16796
+ ),array(
16797
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Regulators"),
16798
+ 'value' => 5595
16799
+ ),array(
16800
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Scuba Diving & Snorkeling Gloves"),
16801
+ 'value' => 5596
16802
+ ),array(
16803
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Scuba Diving & Snorkeling > Snorkels"),
16804
+ 'value' => 5597
16805
+ ),array(
16806
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing"),
16807
+ 'value' => 5598
16808
+ ),array(
16809
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Bodyboards"),
16810
+ 'value' => 5599
16811
+ ),array(
16812
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Paddleboards"),
16813
+ 'value' => 5600
16814
+ ),array(
16815
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Skimboards"),
16816
+ 'value' => 5601
16817
+ ),array(
16818
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Surfboard Cases & Bags"),
16819
+ 'value' => 5602
16820
+ ),array(
16821
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Surfboard Fins"),
16822
+ 'value' => 5603
16823
+ ),array(
16824
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Surfboard Leashes"),
16825
+ 'value' => 5604
16826
+ ),array(
16827
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Surfboard Wax"),
16828
+ 'value' => 5605
16829
+ ),array(
16830
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Surfboards"),
16831
+ 'value' => 5606
16832
+ ),array(
16833
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Surfing Gloves"),
16834
+ 'value' => 5607
16835
+ ),array(
16836
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Surfing > Surfing Tail Pads"),
16837
+ 'value' => 5608
16838
+ ),array(
16839
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming"),
16840
+ 'value' => 5609
16841
+ ),array(
16842
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Hand Paddles"),
16843
+ 'value' => 5610
16844
+ ),array(
16845
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Kickboards"),
16846
+ 'value' => 5611
16847
+ ),array(
16848
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Pull Buoys"),
16849
+ 'value' => 5612
16850
+ ),array(
16851
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swim Belts"),
16852
+ 'value' => 5613
16853
+ ),array(
16854
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swim Caps"),
16855
+ 'value' => 5614
16856
+ ),array(
16857
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swim Gloves"),
16858
+ 'value' => 5615
16859
+ ),array(
16860
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swim Goggle & Mask Accessories"),
16861
+ 'value' => 5616
16862
+ ),array(
16863
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swim Goggles & Masks"),
16864
+ 'value' => 5617
16865
+ ),array(
16866
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swim Weights"),
16867
+ 'value' => 5618
16868
+ ),array(
16869
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swimming Fins"),
16870
+ 'value' => 5619
16871
+ ),array(
16872
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swimming Fins > Monofins"),
16873
+ 'value' => 5620
16874
+ ),array(
16875
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swimming Fins > Training Fins"),
16876
+ 'value' => 5621
16877
+ ),array(
16878
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swimming Machines"),
16879
+ 'value' => 5622
16880
+ ),array(
16881
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Swimming > Swimming Nose Clips"),
16882
+ 'value' => 5623
16883
+ ),array(
16884
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports"),
16885
+ 'value' => 5624
16886
+ ),array(
16887
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Kneeboarding"),
16888
+ 'value' => 5625
16889
+ ),array(
16890
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Kneeboarding > Kneeboards"),
16891
+ 'value' => 5626
16892
+ ),array(
16893
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Parasailing"),
16894
+ 'value' => 5627
16895
+ ),array(
16896
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Tow Cables"),
16897
+ 'value' => 5628
16898
+ ),array(
16899
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Towable Rafts & Tubes"),
16900
+ 'value' => 5629
16901
+ ),array(
16902
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Towed Water Sport Gloves"),
16903
+ 'value' => 5630
16904
+ ),array(
16905
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Wakeboarding"),
16906
+ 'value' => 5631
16907
+ ),array(
16908
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Wakeboarding > Wakeboard Bindings"),
16909
+ 'value' => 5632
16910
+ ),array(
16911
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Wakeboarding > Wakeboards"),
16912
+ 'value' => 5633
16913
+ ),array(
16914
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Water Skiing"),
16915
+ 'value' => 5634
16916
+ ),array(
16917
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Water Skiing > Sit-Down Hydrofoils"),
16918
+ 'value' => 5635
16919
+ ),array(
16920
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Water Skiing > Water Ski Bindings"),
16921
+ 'value' => 5636
16922
+ ),array(
16923
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Water Skiing > Water Skiing Cases & Bags"),
16924
+ 'value' => 5637
16925
+ ),array(
16926
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Towed Water Sports > Water Skiing > Water Skis"),
16927
+ 'value' => 5638
16928
+ ),array(
16929
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Water Polo"),
16930
+ 'value' => 5639
16931
+ ),array(
16932
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Water Polo > Water Polo Balls"),
16933
+ 'value' => 5640
16934
+ ),array(
16935
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Water Polo > Water Polo Caps"),
16936
+ 'value' => 5641
16937
+ ),array(
16938
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Water Polo > Water Polo Goals"),
16939
+ 'value' => 5642
16940
+ ),array(
16941
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Water Tubing"),
16942
+ 'value' => 5643
16943
+ ),array(
16944
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Watercraft Storage Racks"),
16945
+ 'value' => 5644
16946
+ ),array(
16947
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Wetsuits"),
16948
+ 'value' => 5645
16949
+ ),array(
16950
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Wetsuits > Wetsuit Accessories"),
16951
+ 'value' => 5646
16952
+ ),array(
16953
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Wetsuits > Wetsuit Bottoms"),
16954
+ 'value' => 5647
16955
+ ),array(
16956
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Wetsuits > Wetsuit Tops"),
16957
+ 'value' => 5648
16958
+ ),array(
16959
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Whitewater Rafting"),
16960
+ 'value' => 5649
16961
+ ),array(
16962
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Whitewater Rafting > Whitewater Rafting Helmets"),
16963
+ 'value' => 5650
16964
+ ),array(
16965
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Whitewater Rafting > Whitewater Rafts"),
16966
+ 'value' => 5651
16967
+ ),array(
16968
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Windsurfing"),
16969
+ 'value' => 5652
16970
+ ),array(
16971
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Windsurfing > Windsurfing Board Parts"),
16972
+ 'value' => 5653
16973
+ ),array(
16974
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Windsurfing > Windsurfing Board Parts > Windsurfing Board Fins"),
16975
+ 'value' => 5654
16976
+ ),array(
16977
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Windsurfing > Windsurfing Board Parts > Windsurfing Board Masts"),
16978
+ 'value' => 5655
16979
+ ),array(
16980
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Windsurfing > Windsurfing Board Parts > Windsurfing Sails"),
16981
+ 'value' => 5656
16982
+ ),array(
16983
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Water Sports > Windsurfing > Windsurfing Boards"),
16984
+ 'value' => 5657
16985
+ ),array(
16986
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports"),
16987
+ 'value' => 5658
16988
+ ),array(
16989
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Bobsledding"),
16990
+ 'value' => 5659
16991
+ ),array(
16992
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Luge"),
16993
+ 'value' => 5660
16994
+ ),array(
16995
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing"),
16996
+ 'value' => 5661
16997
+ ),array(
16998
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski & Snowboard Bags"),
16999
+ 'value' => 5662
17000
+ ),array(
17001
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski & Snowboard Bags > Ski Bags"),
17002
+ 'value' => 5663
17003
+ ),array(
17004
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski & Snowboard Bags > Snowboard Bags"),
17005
+ 'value' => 5664
17006
+ ),array(
17007
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski & Snowboard Goggle Lenses"),
17008
+ 'value' => 5665
17009
+ ),array(
17010
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski & Snowboard Goggles"),
17011
+ 'value' => 5666
17012
+ ),array(
17013
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski & Snowboard Helmets"),
17014
+ 'value' => 5667
17015
+ ),array(
17016
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski & Snowboard Storage Racks"),
17017
+ 'value' => 5668
17018
+ ),array(
17019
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski Bindings"),
17020
+ 'value' => 5669
17021
+ ),array(
17022
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski Bindings > Cross-Country Ski Bindings"),
17023
+ 'value' => 5670
17024
+ ),array(
17025
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski Bindings > Downhill Ski Bindings"),
17026
+ 'value' => 5671
17027
+ ),array(
17028
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski Boots"),
17029
+ 'value' => 5672
17030
+ ),array(
17031
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski Boots > Cross-Country Ski Boots"),
17032
+ 'value' => 5673
17033
+ ),array(
17034
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski Boots > Downhill Ski Boots"),
17035
+ 'value' => 5674
17036
+ ),array(
17037
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Ski Poles"),
17038
+ 'value' => 5675
17039
+ ),array(
17040
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Skis"),
17041
+ 'value' => 5676
17042
+ ),array(
17043
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Skis > Cross-Country Skis"),
17044
+ 'value' => 5677
17045
+ ),array(
17046
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Skiing > Skis > Downhill Skis"),
17047
+ 'value' => 5678
17048
+ ),array(
17049
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Sledding"),
17050
+ 'value' => 5679
17051
+ ),array(
17052
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Sledding > Sleds"),
17053
+ 'value' => 5680
17054
+ ),array(
17055
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Sledding > Sleds > Runner Sleds"),
17056
+ 'value' => 5681
17057
+ ),array(
17058
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Sledding > Sleds > Saucer Sleds"),
17059
+ 'value' => 5682
17060
+ ),array(
17061
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Sledding > Sleds > Toboggans"),
17062
+ 'value' => 5683
17063
+ ),array(
17064
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Sledding > Snow Tubes"),
17065
+ 'value' => 5684
17066
+ ),array(
17067
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowboarding"),
17068
+ 'value' => 5685
17069
+ ),array(
17070
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowboarding > Snowboard Binding Parts"),
17071
+ 'value' => 5686
17072
+ ),array(
17073
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowboarding > Snowboard Bindings"),
17074
+ 'value' => 5687
17075
+ ),array(
17076
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowboarding > Snowboard Boots"),
17077
+ 'value' => 5688
17078
+ ),array(
17079
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowboarding > Snowboards"),
17080
+ 'value' => 5689
17081
+ ),array(
17082
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowmobiling"),
17083
+ 'value' => 5690
17084
+ ),array(
17085
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowshoeing"),
17086
+ 'value' => 5691
17087
+ ),array(
17088
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowshoeing > Snowshoe Bindings"),
17089
+ 'value' => 5692
17090
+ ),array(
17091
+ 'label' => Mage::helper('richsnippet')->__("Sporting Goods > Winter Sports > Snowshoeing > Snowshoes"),
17092
+ 'value' => 5693
17093
+ ),array(
17094
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games"),
17095
+ 'value' => 5694
17096
+ ),array(
17097
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Game Timers"),
17098
+ 'value' => 5695
17099
+ ),array(
17100
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games"),
17101
+ 'value' => 5696
17102
+ ),array(
17103
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Battle Top Accessories"),
17104
+ 'value' => 5697
17105
+ ),array(
17106
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Battle Tops"),
17107
+ 'value' => 5698
17108
+ ),array(
17109
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Bingo Sets"),
17110
+ 'value' => 5699
17111
+ ),array(
17112
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Blackjack & Craps Sets"),
17113
+ 'value' => 5700
17114
+ ),array(
17115
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Board Games"),
17116
+ 'value' => 5701
17117
+ ),array(
17118
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Board Games > Backgammon Sets"),
17119
+ 'value' => 5702
17120
+ ),array(
17121
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Board Games > Checkers Sets"),
17122
+ 'value' => 5703
17123
+ ),array(
17124
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Board Games > Chess Sets"),
17125
+ 'value' => 5704
17126
+ ),array(
17127
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Board Games > Parcheesi"),
17128
+ 'value' => 5705
17129
+ ),array(
17130
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Card Game Accessories"),
17131
+ 'value' => 5706
17132
+ ),array(
17133
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Card Games"),
17134
+ 'value' => 5707
17135
+ ),array(
17136
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Card Games > Trading Card Games"),
17137
+ 'value' => 5708
17138
+ ),array(
17139
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Card Games > Traditional Playing Cards"),
17140
+ 'value' => 5709
17141
+ ),array(
17142
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Dice Sets & Games"),
17143
+ 'value' => 5710
17144
+ ),array(
17145
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Dice Sets & Games > Dice & Dice Sets"),
17146
+ 'value' => 5711
17147
+ ),array(
17148
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Dice Sets & Games > Dice Games"),
17149
+ 'value' => 5712
17150
+ ),array(
17151
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Poker Chip Accessories"),
17152
+ 'value' => 5713
17153
+ ),array(
17154
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Poker Chip Accessories > Poker Chip Carriers & Trays"),
17155
+ 'value' => 5714
17156
+ ),array(
17157
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Poker Chips & Sets"),
17158
+ 'value' => 5715
17159
+ ),array(
17160
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Portable Electronic Games"),
17161
+ 'value' => 5716
17162
+ ),array(
17163
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Roulette Wheels & Sets"),
17164
+ 'value' => 5717
17165
+ ),array(
17166
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Stacking Games"),
17167
+ 'value' => 5718
17168
+ ),array(
17169
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Tile Games"),
17170
+ 'value' => 5719
17171
+ ),array(
17172
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Tile Games > Dominoes"),
17173
+ 'value' => 5720
17174
+ ),array(
17175
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Games > Tile Games > Mahjong"),
17176
+ 'value' => 5721
17177
+ ),array(
17178
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment"),
17179
+ 'value' => 5722
17180
+ ),array(
17181
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Bounce House Accessories"),
17182
+ 'value' => 5723
17183
+ ),array(
17184
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Bounce Houses"),
17185
+ 'value' => 5724
17186
+ ),array(
17187
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Play Parachutes"),
17188
+ 'value' => 5725
17189
+ ),array(
17190
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Play Tents & Tunnels"),
17191
+ 'value' => 5726
17192
+ ),array(
17193
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Playhouses"),
17194
+ 'value' => 5727
17195
+ ),array(
17196
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Sandboxes"),
17197
+ 'value' => 5728
17198
+ ),array(
17199
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > See Saws"),
17200
+ 'value' => 5729
17201
+ ),array(
17202
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Slides"),
17203
+ 'value' => 5730
17204
+ ),array(
17205
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Swing Set & Playset Accessories"),
17206
+ 'value' => 5731
17207
+ ),array(
17208
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Swing Sets & Playsets"),
17209
+ 'value' => 5732
17210
+ ),array(
17211
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Swings & Gliders"),
17212
+ 'value' => 5733
17213
+ ),array(
17214
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Water Play Equipment"),
17215
+ 'value' => 5734
17216
+ ),array(
17217
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Water Play Equipment > Lawn Water Slides"),
17218
+ 'value' => 5735
17219
+ ),array(
17220
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Water Play Equipment > Play Sprinkers"),
17221
+ 'value' => 5736
17222
+ ),array(
17223
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Water Play Equipment > Water Parks"),
17224
+ 'value' => 5737
17225
+ ),array(
17226
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Outdoor Play Equipment > Water Play Equipment > Water Tables"),
17227
+ 'value' => 5738
17228
+ ),array(
17229
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles"),
17230
+ 'value' => 5739
17231
+ ),array(
17232
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles > Jigsaw Puzzle Accessories"),
17233
+ 'value' => 5740
17234
+ ),array(
17235
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles > Jigsaw Puzzles"),
17236
+ 'value' => 5741
17237
+ ),array(
17238
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles > Mechanical Puzzles"),
17239
+ 'value' => 5742
17240
+ ),array(
17241
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles > Mechanical Puzzles > Assembly & Disassembly Puzzles"),
17242
+ 'value' => 5743
17243
+ ),array(
17244
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles > Mechanical Puzzles > Dexterity Puzzles"),
17245
+ 'value' => 5744
17246
+ ),array(
17247
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles > Mechanical Puzzles > Tavern Puzzles"),
17248
+ 'value' => 5745
17249
+ ),array(
17250
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Puzzles > Wooden & Pegged Puzzles"),
17251
+ 'value' => 5746
17252
+ ),array(
17253
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys"),
17254
+ 'value' => 5747
17255
+ ),array(
17256
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys"),
17257
+ 'value' => 5748
17258
+ ),array(
17259
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Ball & Cup Games"),
17260
+ 'value' => 5749
17261
+ ),array(
17262
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Bouncy Balls"),
17263
+ 'value' => 5750
17264
+ ),array(
17265
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Bubble Blowing Solution"),
17266
+ 'value' => 5751
17267
+ ),array(
17268
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Bubble Blowing Toys"),
17269
+ 'value' => 5752
17270
+ ),array(
17271
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Coiled Spring Toys"),
17272
+ 'value' => 5753
17273
+ ),array(
17274
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Marbles"),
17275
+ 'value' => 5754
17276
+ ),array(
17277
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Paddle Ball Toys"),
17278
+ 'value' => 5755
17279
+ ),array(
17280
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Ribbon & Streamer Toys"),
17281
+ 'value' => 5756
17282
+ ),array(
17283
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Spinning Tops"),
17284
+ 'value' => 5757
17285
+ ),array(
17286
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Toy Jacks"),
17287
+ 'value' => 5758
17288
+ ),array(
17289
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Yo-Yo Parts & Accessories"),
17290
+ 'value' => 5759
17291
+ ),array(
17292
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Yo-Yo Parts & Accessories > Yo-Yo Gloves"),
17293
+ 'value' => 5760
17294
+ ),array(
17295
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Activity Toys > Yo-Yos"),
17296
+ 'value' => 5761
17297
+ ),array(
17298
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Art & Drawing Toys"),
17299
+ 'value' => 5762
17300
+ ),array(
17301
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Art & Drawing Toys > Toy Craft Kits"),
17302
+ 'value' => 5763
17303
+ ),array(
17304
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Art & Drawing Toys > Toy Drawing Tablets"),
17305
+ 'value' => 5764
17306
+ ),array(
17307
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Ball Pit Accessories"),
17308
+ 'value' => 5765
17309
+ ),array(
17310
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Ball Pit Accessories > Ball Pit Balls"),
17311
+ 'value' => 5766
17312
+ ),array(
17313
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Ball Pits"),
17314
+ 'value' => 5767
17315
+ ),array(
17316
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Bath Toys"),
17317
+ 'value' => 5768
17318
+ ),array(
17319
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Beach & Sand Toys"),
17320
+ 'value' => 5769
17321
+ ),array(
17322
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Beach & Sand Toys > Beach Balls"),
17323
+ 'value' => 5770
17324
+ ),array(
17325
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Beach & Sand Toys > Sand Pails"),
17326
+ 'value' => 5771
17327
+ ),array(
17328
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Building Toys"),
17329
+ 'value' => 5772
17330
+ ),array(
17331
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Building Toys > Construction Set Toys"),
17332
+ 'value' => 5773
17333
+ ),array(
17334
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Building Toys > Foam Blocks"),
17335
+ 'value' => 5774
17336
+ ),array(
17337
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Building Toys > Interlocking Blocks"),
17338
+ 'value' => 5775
17339
+ ),array(
17340
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Building Toys > Marble Track Sets"),
17341
+ 'value' => 5776
17342
+ ),array(
17343
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Building Toys > Wooden Blocks"),
17344
+ 'value' => 5777
17345
+ ),array(
17346
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures"),
17347
+ 'value' => 5778
17348
+ ),array(
17349
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures"),
17350
+ 'value' => 5779
17351
+ ),array(
17352
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures > Action Figures"),
17353
+ 'value' => 5780
17354
+ ),array(
17355
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures > Animal Figures"),
17356
+ 'value' => 5781
17357
+ ),array(
17358
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures > Animal Figures > Dinosaur Figures"),
17359
+ 'value' => 5782
17360
+ ),array(
17361
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures > Animal Figures > Horse & Pony Figures"),
17362
+ 'value' => 5783
17363
+ ),array(
17364
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Action & Toy Figures > Army Men"),
17365
+ 'value' => 5784
17366
+ ),array(
17367
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Bobblehead Figures"),
17368
+ 'value' => 5785
17369
+ ),array(
17370
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Doll & Action Figure Accessories"),
17371
+ 'value' => 5786
17372
+ ),array(
17373
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dollhouse Accessories"),
17374
+ 'value' => 5787
17375
+ ),array(
17376
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dollhouses"),
17377
+ 'value' => 5788
17378
+ ),array(
17379
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Dolls"),
17380
+ 'value' => 5789
17381
+ ),array(
17382
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Paper & Magnetic Dolls"),
17383
+ 'value' => 5790
17384
+ ),array(
17385
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppet & Puppet Theater Accessories"),
17386
+ 'value' => 5791
17387
+ ),array(
17388
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppet Theaters"),
17389
+ 'value' => 5792
17390
+ ),array(
17391
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Puppets & Marionettes"),
17392
+ 'value' => 5793
17393
+ ),array(
17394
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Stuffed Animals"),
17395
+ 'value' => 5794
17396
+ ),array(
17397
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Dolls, Playsets & Toy Figures > Toy Playsets"),
17398
+ 'value' => 5795
17399
+ ),array(
17400
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Educational Toys"),
17401
+ 'value' => 5796
17402
+ ),array(
17403
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Educational Toys > Ant Farms"),
17404
+ 'value' => 5797
17405
+ ),array(
17406
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Educational Toys > Bug Collecting Kits"),
17407
+ 'value' => 5798
17408
+ ),array(
17409
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Educational Toys > Reading Toys"),
17410
+ 'value' => 5799
17411
+ ),array(
17412
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Educational Toys > Science Sets"),
17413
+ 'value' => 5800
17414
+ ),array(
17415
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Educational Toys > Toy Abacuses"),
17416
+ 'value' => 5801
17417
+ ),array(
17418
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Electronic Toys"),
17419
+ 'value' => 5802
17420
+ ),array(
17421
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Electronic Toys > Robotic Toys"),
17422
+ 'value' => 5803
17423
+ ),array(
17424
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Executive Toys"),
17425
+ 'value' => 5804
17426
+ ),array(
17427
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Executive Toys > Magnet Toys"),
17428
+ 'value' => 5805
17429
+ ),array(
17430
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toy Accessories"),
17431
+ 'value' => 5806
17432
+ ),array(
17433
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toy Accessories > Kite Accessories"),
17434
+ 'value' => 5807
17435
+ ),array(
17436
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toy Accessories > Kite Accessories > Kite Line Reels & Winders"),
17437
+ 'value' => 5808
17438
+ ),array(
17439
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toys"),
17440
+ 'value' => 5809
17441
+ ),array(
17442
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toys > Air & Water Rockets"),
17443
+ 'value' => 5810
17444
+ ),array(
17445
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toys > Kites"),
17446
+ 'value' => 5811
17447
+ ),array(
17448
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toys > Toy Gliders"),
17449
+ 'value' => 5812
17450
+ ),array(
17451
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Flying Toys > Toy Parachutes"),
17452
+ 'value' => 5813
17453
+ ),array(
17454
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Musical Toys"),
17455
+ 'value' => 5814
17456
+ ),array(
17457
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Musical Toys > Toy Instruments"),
17458
+ 'value' => 5815
17459
+ ),array(
17460
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicle Accessories"),
17461
+ 'value' => 5816
17462
+ ),array(
17463
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicle Accessories > Toy Race Car & Track Accessories"),
17464
+ 'value' => 5817
17465
+ ),array(
17466
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicle Accessories > Toy Train Accessories"),
17467
+ 'value' => 5818
17468
+ ),array(
17469
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles"),
17470
+ 'value' => 5819
17471
+ ),array(
17472
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Airplanes"),
17473
+ 'value' => 5820
17474
+ ),array(
17475
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Boats"),
17476
+ 'value' => 5821
17477
+ ),array(
17478
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Cars"),
17479
+ 'value' => 5822
17480
+ ),array(
17481
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Helicopters"),
17482
+ 'value' => 5823
17483
+ ),array(
17484
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Motorcycles"),
17485
+ 'value' => 5824
17486
+ ),array(
17487
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Race Car & Track Sets"),
17488
+ 'value' => 5825
17489
+ ),array(
17490
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Spaceships"),
17491
+ 'value' => 5826
17492
+ ),array(
17493
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Trains & Train Sets"),
17494
+ 'value' => 5827
17495
+ ),array(
17496
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Play Vehicles > Toy Trucks & Construction Vehicles"),
17497
+ 'value' => 5828
17498
+ ),array(
17499
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play"),
17500
+ 'value' => 5829
17501
+ ),array(
17502
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play > Play Money & Banking"),
17503
+ 'value' => 5830
17504
+ ),array(
17505
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play > Pretend Electronics"),
17506
+ 'value' => 5831
17507
+ ),array(
17508
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play > Pretend Housekeeping"),
17509
+ 'value' => 5832
17510
+ ),array(
17511
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play > Pretend Lawn & Garden"),
17512
+ 'value' => 5833
17513
+ ),array(
17514
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play > Pretend Professions & Role Playing"),
17515
+ 'value' => 5834
17516
+ ),array(
17517
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play > Toy Kitchens & Play Food"),
17518
+ 'value' => 5835
17519
+ ),array(
17520
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Pretend Play > Toy Tools"),
17521
+ 'value' => 5836
17522
+ ),array(
17523
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toy Accessories"),
17524
+ 'value' => 5837
17525
+ ),array(
17526
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys"),
17527
+ 'value' => 5838
17528
+ ),array(
17529
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Airships & Blimps"),
17530
+ 'value' => 5839
17531
+ ),array(
17532
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Boats & Watercraft"),
17533
+ 'value' => 5840
17534
+ ),array(
17535
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Boats & Watercraft > Remote Control Submarines"),
17536
+ 'value' => 5841
17537
+ ),array(
17538
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Cars & Trucks"),
17539
+ 'value' => 5842
17540
+ ),array(
17541
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Figures"),
17542
+ 'value' => 5843
17543
+ ),array(
17544
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Helicopters"),
17545
+ 'value' => 5844
17546
+ ),array(
17547
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Motorcycles"),
17548
+ 'value' => 5845
17549
+ ),array(
17550
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Planes"),
17551
+ 'value' => 5846
17552
+ ),array(
17553
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Robots"),
17554
+ 'value' => 5847
17555
+ ),array(
17556
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Remote Control Toys > Remote Control Tanks"),
17557
+ 'value' => 5848
17558
+ ),array(
17559
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toy Accessories"),
17560
+ 'value' => 5849
17561
+ ),array(
17562
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toy Accessories > Electric Riding Vehicle Accessories"),
17563
+ 'value' => 5850
17564
+ ),array(
17565
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toy Accessories > Electric Riding Vehicle Accessories > Electric Riding Vehicle Chargers"),
17566
+ 'value' => 5851
17567
+ ),array(
17568
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toy Accessories > Push & Pedal Riding Vehicle Accessories"),
17569
+ 'value' => 5852
17570
+ ),array(
17571
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toy Accessories > Wagon Parts & Accessories"),
17572
+ 'value' => 5853
17573
+ ),array(
17574
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toys"),
17575
+ 'value' => 5854
17576
+ ),array(
17577
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toys > Electric Riding Vehicles"),
17578
+ 'value' => 5855
17579
+ ),array(
17580
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toys > Hobby Horses"),
17581
+ 'value' => 5856
17582
+ ),array(
17583
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toys > Push & Pedal Riding Vehicles"),
17584
+ 'value' => 5857
17585
+ ),array(
17586
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toys > Rocking & Spring Riding Toys"),
17587
+ 'value' => 5858
17588
+ ),array(
17589
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Riding Toys > Wagons"),
17590
+ 'value' => 5859
17591
+ ),array(
17592
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys"),
17593
+ 'value' => 5860
17594
+ ),array(
17595
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Boomerangs"),
17596
+ 'value' => 5861
17597
+ ),array(
17598
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Fitness Toys"),
17599
+ 'value' => 5862
17600
+ ),array(
17601
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Fitness Toys > Hula Hoops"),
17602
+ 'value' => 5863
17603
+ ),array(
17604
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Flying Discs"),
17605
+ 'value' => 5864
17606
+ ),array(
17607
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Footbags"),
17608
+ 'value' => 5865
17609
+ ),array(
17610
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Toy Baseball"),
17611
+ 'value' => 5866
17612
+ ),array(
17613
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Toy Basketball"),
17614
+ 'value' => 5867
17615
+ ),array(
17616
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Toy Bowling"),
17617
+ 'value' => 5868
17618
+ ),array(
17619
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Toy Football"),
17620
+ 'value' => 5869
17621
+ ),array(
17622
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Toy Football > Foam Footballs"),
17623
+ 'value' => 5870
17624
+ ),array(
17625
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Toy Golf"),
17626
+ 'value' => 5871
17627
+ ),array(
17628
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Sports Toys > Toy Hockey"),
17629
+ 'value' => 5872
17630
+ ),array(
17631
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Toy Weapons"),
17632
+ 'value' => 5873
17633
+ ),array(
17634
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Toy Weapons > Water Guns"),
17635
+ 'value' => 5874
17636
+ ),array(
17637
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Visual Toys"),
17638
+ 'value' => 5875
17639
+ ),array(
17640
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Visual Toys > Kaleidoscopes"),
17641
+ 'value' => 5876
17642
+ ),array(
17643
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Visual Toys > Prisms"),
17644
+ 'value' => 5877
17645
+ ),array(
17646
+ 'label' => Mage::helper('richsnippet')->__("Toys & Games > Toys > Wind-Up Toys"),
17647
+ 'value' => 5878
17648
+ ),array(
17649
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts"),
17650
+ 'value' => 5879
17651
+ ),array(
17652
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories"),
17653
+ 'value' => 5880
17654
+ ),array(
17655
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Aircraft Parts & Accessories"),
17656
+ 'value' => 5881
17657
+ ),array(
17658
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video"),
17659
+ 'value' => 5882
17660
+ ),array(
17661
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio"),
17662
+ 'value' => 5883
17663
+ ),array(
17664
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio & Video Cables"),
17665
+ 'value' => 5884
17666
+ ),array(
17667
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Amplifiers"),
17668
+ 'value' => 5885
17669
+ ),array(
17670
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Audio Receivers"),
17671
+ 'value' => 5886
17672
+ ),array(
17673
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Audio Receivers > Car Satellite Radios"),
17674
+ 'value' => 5887
17675
+ ),array(
17676
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car CD Changers"),
17677
+ 'value' => 5888
17678
+ ),array(
17679
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Cassette Players"),
17680
+ 'value' => 5889
17681
+ ),array(
17682
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Equalizers & Crossovers"),
17683
+ 'value' => 5890
17684
+ ),array(
17685
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Speakerphones"),
17686
+ 'value' => 5891
17687
+ ),array(
17688
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Speakers"),
17689
+ 'value' => 5892
17690
+ ),array(
17691
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Car Subwoofers"),
17692
+ 'value' => 5893
17693
+ ),array(
17694
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Audio > Cassette Adapters"),
17695
+ 'value' => 5894
17696
+ ),array(
17697
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Surge Protection"),
17698
+ 'value' => 5895
17699
+ ),array(
17700
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Video"),
17701
+ 'value' => 5896
17702
+ ),array(
17703
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Video > Car DVD Players"),
17704
+ 'value' => 5897
17705
+ ),array(
17706
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Car Audio & Video > Car Video > Car Video Monitors"),
17707
+ 'value' => 5898
17708
+ ),array(
17709
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care"),
17710
+ 'value' => 5899
17711
+ ),array(
17712
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Jump Starters"),
17713
+ 'value' => 5900
17714
+ ),array(
17715
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Jumper Cables"),
17716
+ 'value' => 5901
17717
+ ),array(
17718
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Tire Care"),
17719
+ 'value' => 5902
17720
+ ),array(
17721
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Tire Care > Hubcaps"),
17722
+ 'value' => 5903
17723
+ ),array(
17724
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Tire Care > Tire Covers"),
17725
+ 'value' => 5904
17726
+ ),array(
17727
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Tire Care > Tire Markers"),
17728
+ 'value' => 5905
17729
+ ),array(
17730
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Tire Care > Tire Pressure Sensors & Gauges"),
17731
+ 'value' => 5906
17732
+ ),array(
17733
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Tire Care > Tire Valve Caps"),
17734
+ 'value' => 5907
17735
+ ),array(
17736
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Battery Chargers"),
17737
+ 'value' => 5908
17738
+ ),array(
17739
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning"),
17740
+ 'value' => 5909
17741
+ ),array(
17742
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Car Wash Brushes"),
17743
+ 'value' => 5910
17744
+ ),array(
17745
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Car Wash Solutions"),
17746
+ 'value' => 5911
17747
+ ),array(
17748
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Tire Wash & Shine"),
17749
+ 'value' => 5912
17750
+ ),array(
17751
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Vehicle Aerosol Cleaners"),
17752
+ 'value' => 5913
17753
+ ),array(
17754
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Vehicle Carpet Cleaners"),
17755
+ 'value' => 5914
17756
+ ),array(
17757
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Vehicle Glass Cleaners"),
17758
+ 'value' => 5915
17759
+ ),array(
17760
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Vehicle Upholstery Cleaners"),
17761
+ 'value' => 5916
17762
+ ),array(
17763
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Cleaning > Vehicle Waxes, Polishes & Protectants"),
17764
+ 'value' => 5917
17765
+ ),array(
17766
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Covers"),
17767
+ 'value' => 5918
17768
+ ),array(
17769
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor"),
17770
+ 'value' => 5919
17771
+ ),array(
17772
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Antenna Balls"),
17773
+ 'value' => 5920
17774
+ ),array(
17775
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Bumper Stickers"),
17776
+ 'value' => 5921
17777
+ ),array(
17778
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Car Seat Covers"),
17779
+ 'value' => 5922
17780
+ ),array(
17781
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Car Seat Organizers"),
17782
+ 'value' => 5923
17783
+ ),array(
17784
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > License Plate Covers"),
17785
+ 'value' => 5924
17786
+ ),array(
17787
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > License Plate Frames"),
17788
+ 'value' => 5925
17789
+ ),array(
17790
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Vehicle Air Fresheners"),
17791
+ 'value' => 5926
17792
+ ),array(
17793
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Vehicle Decals"),
17794
+ 'value' => 5927
17795
+ ),array(
17796
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Vehicle Display Flags"),
17797
+ 'value' => 5928
17798
+ ),array(
17799
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Vehicle Emblems & Hood Ornaments"),
17800
+ 'value' => 5929
17801
+ ),array(
17802
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Vehicle Magnets"),
17803
+ 'value' => 5930
17804
+ ),array(
17805
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Decor > Vehicle Window Films"),
17806
+ 'value' => 5931
17807
+ ),array(
17808
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Diagnostic Scanners"),
17809
+ 'value' => 5932
17810
+ ),array(
17811
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids"),
17812
+ 'value' => 5933
17813
+ ),array(
17814
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Antifreeze"),
17815
+ 'value' => 5934
17816
+ ),array(
17817
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Brake Fluid"),
17818
+ 'value' => 5935
17819
+ ),array(
17820
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Cooling System Additives"),
17821
+ 'value' => 5936
17822
+ ),array(
17823
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Engine Degreasers"),
17824
+ 'value' => 5937
17825
+ ),array(
17826
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Fuel System Cleaners"),
17827
+ 'value' => 5938
17828
+ ),array(
17829
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Hydraulic Clutch Fluid"),
17830
+ 'value' => 5939
17831
+ ),array(
17832
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Motor Oil"),
17833
+ 'value' => 5940
17834
+ ),array(
17835
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Power Steering Fluid"),
17836
+ 'value' => 5941
17837
+ ),array(
17838
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Transmission Fluid"),
17839
+ 'value' => 5942
17840
+ ),array(
17841
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Vehicle Greases"),
17842
+ 'value' => 5943
17843
+ ),array(
17844
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Vehicle Performance Additives"),
17845
+ 'value' => 5944
17846
+ ),array(
17847
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Fluids > Windshield Fluid"),
17848
+ 'value' => 5945
17849
+ ),array(
17850
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Vehicle Paint"),
17851
+ 'value' => 5946
17852
+ ),array(
17853
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Care > Windshield Repair Kits"),
17854
+ 'value' => 5947
17855
+
17856
+ ),array(
17857
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior"),
17858
+ 'value' => 5948
17859
+ ),array(
17860
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Bumper Parts"),
17861
+ 'value' => 5949
17862
+ ),array(
17863
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Bumpers"),
17864
+ 'value' => 5950
17865
+ ),array(
17866
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Hardtops"),
17867
+ 'value' => 5951
17868
+ ),array(
17869
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > License Plates"),
17870
+ 'value' => 5952
17871
+ ),array(
17872
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Body Kits"),
17873
+ 'value' => 5953
17874
+ ),array(
17875
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Cargo Nets"),
17876
+ 'value' => 5954
17877
+ ),array(
17878
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Rack Accessories"),
17879
+ 'value' => 5955
17880
+ ),array(
17881
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Rack Accessories > Vehicle Bicycle Rack Accessories"),
17882
+ 'value' => 5956
17883
+ ),array(
17884
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Rack Accessories > Vehicle Bicycle Rack Accessories > Bicycle Fork Mount Adapters"),
17885
+ 'value' => 5957
17886
+ ),array(
17887
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Rack Accessories > Vehicle Bicycle Rack Accessories > Bicycle Frame Adapters"),
17888
+ 'value' => 5958
17889
+ ),array(
17890
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Rack Accessories > Vehicle Bicycle Rack Accessories > Bicycle Wheel Straps"),
17891
+ 'value' => 5959
17892
+ ),array(
17893
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks"),
17894
+ 'value' => 5960
17895
+ ),array(
17896
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Base Rack Systems"),
17897
+ 'value' => 5961
17898
+ ),array(
17899
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Bicycle Racks"),
17900
+ 'value' => 5962
17901
+ ),array(
17902
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Canoe & Kayak Racks"),
17903
+ 'value' => 5963
17904
+ ),array(
17905
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Cargo Racks"),
17906
+ 'value' => 5964
17907
+ ),array(
17908
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Fishing Pole Racks"),
17909
+ 'value' => 5965
17910
+ ),array(
17911
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Gun Racks"),
17912
+ 'value' => 5966
17913
+ ),array(
17914
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Motorcycle & Scooter Racks"),
17915
+ 'value' => 5967
17916
+ ),array(
17917
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Ski & Snowboard Racks"),
17918
+ 'value' => 5968
17919
+ ),array(
17920
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Carrying Racks > Vehicle Water Sport Board Racks"),
17921
+ 'value' => 5969
17922
+ ),array(
17923
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Diffusers & Splitters"),
17924
+ 'value' => 5970
17925
+ ),array(
17926
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Door Parts"),
17927
+ 'value' => 5971
17928
+ ),array(
17929
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Doors"),
17930
+ 'value' => 5972
17931
+ ),array(
17932
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Grilles"),
17933
+ 'value' => 5973
17934
+ ),array(
17935
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Hitches"),
17936
+ 'value' => 5974
17937
+ ),array(
17938
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Running Boards"),
17939
+ 'value' => 5975
17940
+ ),array(
17941
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Tow Hooks"),
17942
+ 'value' => 5976
17943
+ ),array(
17944
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Trailer Parts"),
17945
+ 'value' => 5977
17946
+ ),array(
17947
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motor Vehicle Warning Whips"),
17948
+ 'value' => 5978
17949
+ ),array(
17950
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motorcycle Fairings"),
17951
+ 'value' => 5979
17952
+ ),array(
17953
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motorcycle Fenders"),
17954
+ 'value' => 5980
17955
+ ),array(
17956
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motorcycle Foot Pegs"),
17957
+ 'value' => 5981
17958
+ ),array(
17959
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motorcycle Handlebars & Grips"),
17960
+ 'value' => 5982
17961
+ ),array(
17962
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motorcycle Seats"),
17963
+ 'value' => 5983
17964
+ ),array(
17965
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Motorcycle Shift Levers"),
17966
+ 'value' => 5984
17967
+ ),array(
17968
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Soft Tops"),
17969
+ 'value' => 5985
17970
+ ),array(
17971
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Spoilers"),
17972
+ 'value' => 5986
17973
+ ),array(
17974
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Sunroofs"),
17975
+ 'value' => 5987
17976
+ ),array(
17977
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Truck Bed Parts"),
17978
+ 'value' => 5988
17979
+ ),array(
17980
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Truck Bed Parts > Truck Bed Bars"),
17981
+ 'value' => 5989
17982
+ ),array(
17983
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Truck Beds"),
17984
+ 'value' => 5990
17985
+ ),array(
17986
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Winch Parts"),
17987
+ 'value' => 5991
17988
+ ),array(
17989
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Exterior > Winches"),
17990
+ 'value' => 5992
17991
+ ),array(
17992
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior"),
17993
+ 'value' => 5993
17994
+ ),array(
17995
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Automotive Fuses"),
17996
+ 'value' => 5994
17997
+ ),array(
17998
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Car Seat Cushions"),
17999
+ 'value' => 5995
18000
+ ),array(
18001
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Car Seats"),
18002
+ 'value' => 5996
18003
+ ),array(
18004
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Cigar Lighter Receptacles"),
18005
+ 'value' => 5997
18006
+ ),array(
18007
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Cup Holders"),
18008
+ 'value' => 5998
18009
+ ),array(
18010
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Dashboard Accessories"),
18011
+ 'value' => 5999
18012
+ ),array(
18013
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Headliners"),
18014
+ 'value' => 6000
18015
+ ),array(
18016
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Power Seats"),
18017
+ 'value' => 6001
18018
+ ),array(
18019
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Sun Shields"),
18020
+ 'value' => 6002
18021
+ ),array(
18022
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Vehicle Armrests"),
18023
+ 'value' => 6003
18024
+ ),array(
18025
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Vehicle Backrests"),
18026
+ 'value' => 6004
18027
+ ),array(
18028
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Vehicle Carpets"),
18029
+ 'value' => 6005
18030
+ ),array(
18031
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Interior > Vehicle Floor Mats"),
18032
+ 'value' => 6006
18033
+ ),array(
18034
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring"),
18035
+ 'value' => 6007
18036
+ ),array(
18037
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring > Engine Control Unit Parts"),
18038
+ 'value' => 6008
18039
+ ),array(
18040
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring > Fuel Meters"),
18041
+ 'value' => 6009
18042
+ ),array(
18043
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring > Motor Vehicle Trip Computers"),
18044
+ 'value' => 6010
18045
+ ),array(
18046
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring > Odometers"),
18047
+ 'value' => 6011
18048
+ ),array(
18049
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring > Radar Detectors"),
18050
+ 'value' => 6012
18051
+ ),array(
18052
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring > Speedometers"),
18053
+ 'value' => 6013
18054
+ ),array(
18055
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Monitoring > Tachometers"),
18056
+ 'value' => 6014
18057
+ ),array(
18058
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts"),
18059
+ 'value' => 6015
18060
+ ),array(
18061
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Air Intake Parts"),
18062
+ 'value' => 6016
18063
+ ),array(
18064
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Air Intake Parts > Vehicle Air Filters"),
18065
+ 'value' => 6017
18066
+ ),array(
18067
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Air Intake Parts > Vehicle Air Manifolds"),
18068
+ 'value' => 6018
18069
+ ),array(
18070
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Air Intake Parts > Vehicle Air Pump Parts"),
18071
+ 'value' => 6019
18072
+ ),array(
18073
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Air Intake Parts > Vehicle Air Pumps"),
18074
+ 'value' => 6020
18075
+ ),array(
18076
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Brake & Clutch Levers"),
18077
+ 'value' => 6021
18078
+ ),array(
18079
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Batteries"),
18080
+ 'value' => 6022
18081
+ ),array(
18082
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Batteries > Hybrid Batteries"),
18083
+ 'value' => 6023
18084
+ ),array(
18085
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Belts"),
18086
+ 'value' => 6024
18087
+ ),array(
18088
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Braking"),
18089
+ 'value' => 6025
18090
+ ),array(
18091
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Braking > Parking Brake Parts"),
18092
+ 'value' => 6026
18093
+ ),array(
18094
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Braking > Vehicle Brake Parts"),
18095
+ 'value' => 6027
18096
+ ),array(
18097
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Braking > Vehicle Manual Brake Parts"),
18098
+ 'value' => 6028
18099
+ ),array(
18100
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control"),
18101
+ 'value' => 6029
18102
+ ),array(
18103
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control > Vehicle Air Conditioner Parts"),
18104
+ 'value' => 6030
18105
+ ),array(
18106
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control > Vehicle Blower Parts"),
18107
+ 'value' => 6031
18108
+ ),array(
18109
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control > Vehicle Defroster Parts"),
18110
+ 'value' => 6032
18111
+ ),array(
18112
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control > Vehicle Heater Parts"),
18113
+ 'value' => 6033
18114
+ ),array(
18115
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Climate Control > Vehicle Temperature Controllers"),
18116
+ 'value' => 6034
18117
+ ),array(
18118
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts"),
18119
+ 'value' => 6035
18120
+ ),array(
18121
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Alternator Parts"),
18122
+ 'value' => 6036
18123
+ ),array(
18124
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Alternators"),
18125
+ 'value' => 6037
18126
+ ),array(
18127
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Camshaft Parts"),
18128
+ 'value' => 6038
18129
+ ),array(
18130
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Camshafts"),
18131
+ 'value' => 6039
18132
+ ),array(
18133
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Carburetor Parts"),
18134
+ 'value' => 6040
18135
+ ),array(
18136
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Carburetors"),
18137
+ 'value' => 6041
18138
+ ),array(
18139
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Compressor Parts"),
18140
+ 'value' => 6042
18141
+ ),array(
18142
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Compressors"),
18143
+ 'value' => 6043
18144
+ ),array(
18145
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Crankshaft Parts"),
18146
+ 'value' => 6044
18147
+ ),array(
18148
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Crankshafts"),
18149
+ 'value' => 6045
18150
+ ),array(
18151
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Cylinder Heads & Parts"),
18152
+ 'value' => 6046
18153
+ ),array(
18154
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Engine Gaskets"),
18155
+ 'value' => 6047
18156
+ ),array(
18157
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Engine Timing Parts"),
18158
+ 'value' => 6048
18159
+ ),array(
18160
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Engine Timing Parts > Vehicle Engine Timing Belts"),
18161
+ 'value' => 6049
18162
+ ),array(
18163
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Flywheels & Flywheel Parts"),
18164
+ 'value' => 6050
18165
+ ),array(
18166
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Generator Parts"),
18167
+ 'value' => 6051
18168
+ ),array(
18169
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Ignition Parts"),
18170
+ 'value' => 6052
18171
+ ),array(
18172
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Ignition Parts > Capacitor Discharge Ignition Parts"),
18173
+ 'value' => 6053
18174
+ ),array(
18175
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Ignition Parts > Distributor Parts"),
18176
+ 'value' => 6054
18177
+ ),array(
18178
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Ignition Parts > Ignition Coils"),
18179
+ 'value' => 6055
18180
+ ),array(
18181
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Ignition Parts > Spark Plugs"),
18182
+ 'value' => 6056
18183
+ ),array(
18184
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Piston Parts"),
18185
+ 'value' => 6057
18186
+ ),array(
18187
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Piston Parts > Gudgeon Pins"),
18188
+ 'value' => 6058
18189
+ ),array(
18190
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Piston Parts > Piston Rings"),
18191
+ 'value' => 6059
18192
+ ),array(
18193
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Pistons"),
18194
+ 'value' => 6060
18195
+ ),array(
18196
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Radiator Parts"),
18197
+ 'value' => 6061
18198
+ ),array(
18199
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Radiators"),
18200
+ 'value' => 6062
18201
+ ),array(
18202
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Starter Motor Parts"),
18203
+ 'value' => 6063
18204
+ ),array(
18205
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Starter Motors"),
18206
+ 'value' => 6064
18207
+ ),array(
18208
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Super Charger Parts"),
18209
+ 'value' => 6065
18210
+ ),array(
18211
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Engine Parts > Vehicle Vacuum Pump Parts"),
18212
+ 'value' => 6066
18213
+ ),array(
18214
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust"),
18215
+ 'value' => 6067
18216
+ ),array(
18217
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust > Catalytic Converters"),
18218
+ 'value' => 6068
18219
+ ),array(
18220
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust > Exhaust Gas Recirculation Parts"),
18221
+ 'value' => 6069
18222
+ ),array(
18223
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust > Exhaust Manifolds"),
18224
+ 'value' => 6070
18225
+ ),array(
18226
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust > Mufflers & Muffler Parts"),
18227
+ 'value' => 6071
18228
+ ),array(
18229
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust > Oxygen Sensors & Parts"),
18230
+ 'value' => 6072
18231
+ ),array(
18232
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Exhaust > Tailpipes & Tailpipe Parts"),
18233
+ 'value' => 6073
18234
+ ),array(
18235
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems"),
18236
+ 'value' => 6074
18237
+ ),array(
18238
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Injection Parts"),
18239
+ 'value' => 6075
18240
+ ),array(
18241
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Injectors"),
18242
+ 'value' => 6076
18243
+ ),array(
18244
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Lines & Parts"),
18245
+ 'value' => 6077
18246
+ ),array(
18247
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Pump Parts"),
18248
+ 'value' => 6078
18249
+ ),array(
18250
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Pumps"),
18251
+ 'value' => 6079
18252
+ ),array(
18253
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Screens & Filters"),
18254
+ 'value' => 6080
18255
+ ),array(
18256
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Tank Parts"),
18257
+ 'value' => 6081
18258
+ ),array(
18259
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Fuel Tanks"),
18260
+ 'value' => 6082
18261
+ ),array(
18262
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Nitrous Systems"),
18263
+ 'value' => 6083
18264
+ ),array(
18265
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Fuel Systems > Vehicle Flow Meters"),
18266
+ 'value' => 6084
18267
+ ),array(
18268
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting"),
18269
+ 'value' => 6085
18270
+ ),array(
18271
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Exterior Vehicle Light Covers"),
18272
+ 'value' => 6086
18273
+ ),array(
18274
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Fog Lights"),
18275
+ 'value' => 6087
18276
+ ),array(
18277
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Headlights"),
18278
+ 'value' => 6088
18279
+ ),array(
18280
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Interior Lighting"),
18281
+ 'value' => 6089
18282
+ ),array(
18283
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Light Bulbs"),
18284
+ 'value' => 6090
18285
+ ),array(
18286
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Parking Lights"),
18287
+ 'value' => 6091
18288
+ ),array(
18289
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Reverse Lights"),
18290
+ 'value' => 6092
18291
+ ),array(
18292
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Side Marker Lights"),
18293
+ 'value' => 6093
18294
+ ),array(
18295
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Tail & Brake Lights"),
18296
+ 'value' => 6094
18297
+ ),array(
18298
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Lighting > Vehicle Turn Signal Lights"),
18299
+ 'value' => 6095
18300
+ ),array(
18301
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Mirrors"),
18302
+ 'value' => 6096
18303
+ ),array(
18304
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Mirrors > Vehicle Rear-View Mirrors"),
18305
+ 'value' => 6097
18306
+ ),array(
18307
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Mirrors > Vehicle Side-View Mirrors"),
18308
+ 'value' => 6098
18309
+ ),array(
18310
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Mirrors > Vehicle Towing Mirrors"),
18311
+ 'value' => 6099
18312
+ ),array(
18313
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Pedals"),
18314
+ 'value' => 6100
18315
+ ),array(
18316
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Valves & Valve Parts"),
18317
+ 'value' => 6101
18318
+ ),array(
18319
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems"),
18320
+ 'value' => 6102
18321
+ ),array(
18322
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels"),
18323
+ 'value' => 6103
18324
+ ),array(
18325
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > ATV & UTV Rims & Wheels"),
18326
+ 'value' => 6104
18327
+ ),array(
18328
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > ATV & UTV Rims & Wheels > ATV Rims & Wheels"),
18329
+ 'value' => 6105
18330
+ ),array(
18331
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > ATV & UTV Rims & Wheels > UTV Rims & Wheels"),
18332
+ 'value' => 6106
18333
+ ),array(
18334
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Automotive Rims & Wheels"),
18335
+ 'value' => 6107
18336
+ ),array(
18337
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Rims & Wheels > Motorcycle Rims & Wheels"),
18338
+ 'value' => 6108
18339
+ ),array(
18340
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires"),
18341
+ 'value' => 6109
18342
+ ),array(
18343
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > ATV & UTV Tires"),
18344
+ 'value' => 6110
18345
+ ),array(
18346
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > ATV & UTV Tires > ATV Tires"),
18347
+ 'value' => 6111
18348
+ ),array(
18349
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > ATV & UTV Tires > UTV Tires"),
18350
+ 'value' => 6112
18351
+ ),array(
18352
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Automotive Tires"),
18353
+ 'value' => 6113
18354
+ ),array(
18355
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Tires > Motorcycle Tires"),
18356
+ 'value' => 6114
18357
+ ),array(
18358
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Motor Vehicle Wheel Parts"),
18359
+ 'value' => 6115
18360
+ ),array(
18361
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Tire Accessories"),
18362
+ 'value' => 6116
18363
+ ),array(
18364
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Wheel Systems > Tire Accessories > Tire Chains"),
18365
+ 'value' => 6117
18366
+ ),array(
18367
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Window Parts"),
18368
+ 'value' => 6118
18369
+ ),array(
18370
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Window Parts > Power Window Parts"),
18371
+ 'value' => 6119
18372
+ ),array(
18373
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Motor Vehicle Window Parts > Window & Windshield Glass"),
18374
+ 'value' => 6120
18375
+ ),array(
18376
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Oil Circulation"),
18377
+ 'value' => 6121
18378
+ ),array(
18379
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Oil Circulation > Oil Filters"),
18380
+ 'value' => 6122
18381
+ ),array(
18382
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Oil Circulation > Oil Pump Parts"),
18383
+ 'value' => 6123
18384
+ ),array(
18385
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Oil Circulation > Oil Pumps"),
18386
+ 'value' => 6124
18387
+ ),array(
18388
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Oil Circulation > Oil Sumps"),
18389
+ 'value' => 6125
18390
+ ),array(
18391
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts"),
18392
+ 'value' => 6126
18393
+ ),array(
18394
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > King Pins"),
18395
+ 'value' => 6127
18396
+ ),array(
18397
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > Power Steering Parts"),
18398
+ 'value' => 6128
18399
+ ),array(
18400
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > Steering Wheel Controls"),
18401
+ 'value' => 6129
18402
+ ),array(
18403
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > Steering Wheel Controls > Cruise Control Parts"),
18404
+ 'value' => 6130
18405
+ ),array(
18406
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > Steering Wheel Controls > Headlight Control Parts"),
18407
+ 'value' => 6131
18408
+ ),array(
18409
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > Steering Wheel Controls > Vehicle Light Dimmers"),
18410
+ 'value' => 6132
18411
+ ),array(
18412
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > Steering Wheel Controls > Wiper Speed Control Parts"),
18413
+ 'value' => 6133
18414
+ ),array(
18415
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Steering Parts > Steering Wheels"),
18416
+ 'value' => 6134
18417
+ ),array(
18418
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Suspension Parts"),
18419
+ 'value' => 6135
18420
+ ),array(
18421
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Suspension Parts > Shock Absorbers"),
18422
+ 'value' => 6136
18423
+ ),array(
18424
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts"),
18425
+ 'value' => 6137
18426
+ ),array(
18427
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Axle Parts"),
18428
+ 'value' => 6138
18429
+ ),array(
18430
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Ball Bearings"),
18431
+ 'value' => 6139
18432
+ ),array(
18433
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Clutch Parts"),
18434
+ 'value' => 6140
18435
+ ),array(
18436
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Connecting Rods"),
18437
+ 'value' => 6141
18438
+ ),array(
18439
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Differentials"),
18440
+ 'value' => 6142
18441
+ ),array(
18442
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Driveshaft Parts"),
18443
+ 'value' => 6143
18444
+ ),array(
18445
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Driveshafts"),
18446
+ 'value' => 6144
18447
+ ),array(
18448
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Gearbox Parts"),
18449
+ 'value' => 6145
18450
+ ),array(
18451
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Gearboxes"),
18452
+ 'value' => 6146
18453
+ ),array(
18454
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Rocker Arm Parts"),
18455
+ 'value' => 6147
18456
+ ),array(
18457
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Rocker Arm Parts > Rocker Covers"),
18458
+ 'value' => 6148
18459
+ ),array(
18460
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Rocker Arms"),
18461
+ 'value' => 6149
18462
+ ),array(
18463
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Transfer Case Parts"),
18464
+ 'value' => 6150
18465
+ ),array(
18466
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Transmission Parts > Transmission Gears"),
18467
+ 'value' => 6151
18468
+ ),array(
18469
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Vehicle Battery Parts"),
18470
+ 'value' => 6152
18471
+ ),array(
18472
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Parts > Windshield Wipers"),
18473
+ 'value' => 6153
18474
+ ),array(
18475
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Safety Equipment"),
18476
+ 'value' => 6154
18477
+ ),array(
18478
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Safety Equipment > Vehicle Parking Sensors"),
18479
+ 'value' => 6155
18480
+ ),array(
18481
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems"),
18482
+ 'value' => 6156
18483
+ ),array(
18484
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Car Alarm Accessories"),
18485
+ 'value' => 6157
18486
+ ),array(
18487
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Car Alarm Systems"),
18488
+ 'value' => 6158
18489
+ ),array(
18490
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Child Safety Locks"),
18491
+ 'value' => 6159
18492
+ ),array(
18493
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Immobilizers"),
18494
+ 'value' => 6160
18495
+ ),array(
18496
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Locking Hubs"),
18497
+ 'value' => 6161
18498
+ ),array(
18499
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Motor Vehicle Security Cameras"),
18500
+ 'value' => 6162
18501
+ ),array(
18502
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Motorcycle Alarms & Locks"),
18503
+ 'value' => 6163
18504
+ ),array(
18505
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Power Door Locks"),
18506
+ 'value' => 6164
18507
+ ),array(
18508
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Remote Keyless Systems"),
18509
+ 'value' => 6165
18510
+ ),array(
18511
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motor Vehicle Security & Locking Systems > Steering Wheel Locks"),
18512
+ 'value' => 6166
18513
+ ),array(
18514
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories"),
18515
+ 'value' => 6167
18516
+ ),array(
18517
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Bags & Panniers"),
18518
+ 'value' => 6168
18519
+ ),array(
18520
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear"),
18521
+ 'value' => 6169
18522
+ ),array(
18523
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Chest & Back Protectors"),
18524
+ 'value' => 6170
18525
+ ),array(
18526
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Elbow & Wrist Guards"),
18527
+ 'value' => 6171
18528
+ ),array(
18529
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Gloves"),
18530
+ 'value' => 6172
18531
+ ),array(
18532
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Goggles"),
18533
+ 'value' => 6173
18534
+ ),array(
18535
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Helmet Parts & Accessories"),
18536
+ 'value' => 6174
18537
+ ),array(
18538
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Helmet Parts & Accessories > Motorcycle Helmet Visors"),
18539
+ 'value' => 6175
18540
+ ),array(
18541
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Helmets"),
18542
+ 'value' => 6176
18543
+ ),array(
18544
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Kidney Belts"),
18545
+ 'value' => 6177
18546
+ ),array(
18547
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Knee & Shin Guards"),
18548
+ 'value' => 6178
18549
+ ),array(
18550
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Motorcycle Accessories > Motorcycle Protective Gear > Motorcycle Neck Braces"),
18551
+ 'value' => 6179
18552
+ ),array(
18553
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories"),
18554
+ 'value' => 6180
18555
+ ),array(
18556
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring"),
18557
+ 'value' => 6181
18558
+ ),array(
18559
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Chains"),
18560
+ 'value' => 6182
18561
+ ),array(
18562
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Lines & Ropes"),
18563
+ 'value' => 6183
18564
+ ),array(
18565
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchor Windlasses"),
18566
+ 'value' => 6184
18567
+ ),array(
18568
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Anchors"),
18569
+ 'value' => 6185
18570
+ ),array(
18571
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Boat Hooks"),
18572
+ 'value' => 6186
18573
+ ),array(
18574
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Boat Ladders"),
18575
+ 'value' => 6187
18576
+ ),array(
18577
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Dock Cleats"),
18578
+ 'value' => 6188
18579
+ ),array(
18580
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Docking & Anchoring > Dock Steps"),
18581
+ 'value' => 6189
18582
+ ),array(
18583
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Sailboat Parts"),
18584
+ 'value' => 6190
18585
+ ),array(
18586
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care"),
18587
+ 'value' => 6191
18588
+ ),array(
18589
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care > Watercraft Cleaners"),
18590
+ 'value' => 6192
18591
+ ),array(
18592
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care > Watercraft Covers"),
18593
+ 'value' => 6193
18594
+ ),array(
18595
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Care > Watercraft Polishes"),
18596
+ 'value' => 6194
18597
+ ),array(
18598
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts"),
18599
+ 'value' => 6195
18600
+ ),array(
18601
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Alternators"),
18602
+ 'value' => 6196
18603
+ ),array(
18604
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Carburetors & Parts"),
18605
+ 'value' => 6197
18606
+ ),array(
18607
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Engine Controls"),
18608
+ 'value' => 6198
18609
+ ),array(
18610
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Ignition Parts"),
18611
+ 'value' => 6199
18612
+ ),array(
18613
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Impellers"),
18614
+ 'value' => 6200
18615
+ ),array(
18616
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Motor Locks"),
18617
+ 'value' => 6201
18618
+ ),array(
18619
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Motor Mounts"),
18620
+ 'value' => 6202
18621
+ ),array(
18622
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Pistons & Parts"),
18623
+ 'value' => 6203
18624
+ ),array(
18625
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engine Parts > Watercraft Propellers"),
18626
+ 'value' => 6204
18627
+ ),array(
18628
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Engines & Motors"),
18629
+ 'value' => 6205
18630
+ ),array(
18631
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts"),
18632
+ 'value' => 6206
18633
+ ),array(
18634
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts > Watercraft Manifolds"),
18635
+ 'value' => 6207
18636
+ ),array(
18637
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Exhaust Parts > Watercraft Mufflers & Parts"),
18638
+ 'value' => 6208
18639
+ ),array(
18640
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems"),
18641
+ 'value' => 6209
18642
+ ),array(
18643
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Lines & Parts"),
18644
+ 'value' => 6210
18645
+ ),array(
18646
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Meters"),
18647
+ 'value' => 6211
18648
+ ),array(
18649
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Pumps & Parts"),
18650
+ 'value' => 6212
18651
+ ),array(
18652
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Fuel Systems > Watercraft Fuel Tanks & Parts"),
18653
+ 'value' => 6213
18654
+ ),array(
18655
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Lighting"),
18656
+ 'value' => 6214
18657
+ ),array(
18658
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts"),
18659
+ 'value' => 6215
18660
+ ),array(
18661
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts > Watercraft Steering Cables"),
18662
+ 'value' => 6216
18663
+ ),array(
18664
+ 'label' => Mage::helper('richsnippet')->__("Vehicles & Parts > Vehicle Parts & Accessories > Watercraft Parts & Accessories > Watercraft Steering Parts > Watercraft Steering Wheels"),
18665
+ 'value' => 6217
18666
+ ),
18667
+ );
18668
+ }
18669
+ return $this->_options;
18670
+ }
18671
+ }
app/code/community/NewsModules/RichSnippet/etc/config.xml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <NewsModules_RichSnippet>
5
+ <version>0.1.0</version>
6
+ </NewsModules_RichSnippet>
7
+ </modules>
8
+ <global>
9
+ <helpers>
10
+ <richsnippet>
11
+ <class>NewsModules_RichSnippet_Helper</class>
12
+ </richsnippet>
13
+ </helpers>
14
+ <models>
15
+ <richsnippet>
16
+ <class>NewsModules_RichSnippet_Model</class>
17
+ </richsnippet>
18
+ </models>
19
+ <resources>
20
+ <richsnippet_setup>
21
+ <setup>
22
+ <module>NewsModules_RichSnippet</module>
23
+ <class>Mage_Catalog_Model_Resource_Setup</class>
24
+ </setup>
25
+ </richsnippet_setup>
26
+ </resources>
27
+ </global>
28
+ <frontend>
29
+ <layout>
30
+ <updates>
31
+ <richsnippet>
32
+ <file>richsnippet.xml</file>
33
+ </richsnippet>
34
+ </updates>
35
+ </layout>
36
+ </frontend>
37
+ <adminhtml>
38
+ <layout>
39
+ <updates>
40
+ <richsnippet>
41
+ <file>richsnippet.xml</file>
42
+ </richsnippet>
43
+ </updates>
44
+ </layout>
45
+ </adminhtml>
46
+ </config>
app/code/community/NewsModules/RichSnippet/sql/richsnippet_setup/mysql4-install-0.1.0.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $installer = $this;
3
+ $installer->startSetup();
4
+
5
+ $entityTypeId = $installer->getEntityTypeId('catalog_category');
6
+ $attributeSetId = $installer->getDefaultAttributeSetId($entityTypeId);
7
+ $attributeGroupId = $installer->getDefaultAttributeGroupId($entityTypeId, $attributeSetId);
8
+
9
+ $installer->addAttribute('catalog_category', 'richsnippet_category', array(
10
+ 'type' => 'int',
11
+ 'label' => 'Rich Snippet Category',
12
+ 'input' => 'select',
13
+ 'source' => 'richsnippet/entity_attribute_source_category',
14
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
15
+ 'required' => false
16
+ ));
17
+
18
+ $installer->addAttributeToGroup(
19
+ $entityTypeId,
20
+ $attributeSetId,
21
+ 4, //$attributeGroupId, //General Informations Tab
22
+ 'richsnippet_category',
23
+ '20'
24
+ );
25
+
26
+ $attributeId = $installer->getAttributeId($entityTypeId, 'richsnippet_category');
27
+
28
+ $installer->endSetup();
app/design/adminhtml/default/default/layout/richsnippet.xml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <adminhtml_catalog_category_edit>
4
+ <reference name="head">
5
+ <action method="addJs"><script>newsmodules/richsnippet/jquery-1.11.1.min.js</script></action>
6
+ <action method="addJs"><script>newsmodules/richsnippet/jquery-noconflict.js</script></action>
7
+ <action method="addJs"><script>newsmodules/richsnippet/adminhtml/catalog/category.js</script></action>
8
+ </reference>
9
+ </adminhtml_catalog_category_edit>
10
+ </layout>
app/design/frontend/base/default/layout/richsnippet.xml ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="breadcrumbs">
5
+ <action method="setTemplate">
6
+ <template>richsnippet/page/html/breadcrumbs.phtml</template>
7
+ </action>
8
+ </reference>
9
+ </default>
10
+
11
+ <catalog_product_view>
12
+ <reference name="content">
13
+ <block type="core/template" name="richsnippet.product" template="richsnippet/product.phtml">
14
+ <block type="catalog/product_view" name="richsnippet.catalog.product_view" template="richsnippet/catalog/product/view.phtml" />
15
+ <block type="catalog/product_view_media" name="richsnippet.catalog.product_view_media" template="richsnippet/catalog/product/view/media.phtml" />
16
+ <block type="core/template" name="richsnippet.product.offer" template="richsnippet/product/offer.phtml" />
17
+ </block>
18
+ </reference>
19
+ </catalog_product_view>
20
+
21
+ <PRODUCT_TYPE_simple>
22
+ <reference name="richsnippet.product.offer">
23
+ <block type="catalog/product_view_type_simple" name="richsnippet.catalog.product_view_type_availability" template="richsnippet/catalog/product/view/type/availability/default.phtml" />
24
+ <block type="catalog/product_price" name="richsnippet.catalog.product_price" template="richsnippet/catalog/product/price.phtml" />
25
+ </reference>
26
+ </PRODUCT_TYPE_simple>
27
+ <PRODUCT_TYPE_configurable>
28
+ <reference name="richsnippet.product.offer">
29
+ <block type="catalog/product_view_type_configurable" name="richsnippet.catalog.product_view_type_availability" template="richsnippet/catalog/product/view/type/availability/default.phtml" />
30
+ <block type="catalog/product_price" name="richsnippet.catalog.product_price" template="richsnippet/catalog/product/price.phtml" />
31
+ </reference>
32
+ </PRODUCT_TYPE_configurable>
33
+ <PRODUCT_TYPE_grouped>
34
+ <reference name="richsnippet.product.offer">
35
+ <block type="catalog/product_view_type_grouped" name="richsnippet.catalog.product_view_type_availability" template="richsnippet/catalog/product/view/type/availability/grouped.phtml" />
36
+ <block type="catalog/product_price" name="richsnippet.catalog.product_price" template="richsnippet/catalog/product/price.phtml" />
37
+ </reference>
38
+ </PRODUCT_TYPE_grouped>
39
+ <PRODUCT_TYPE_virtual>
40
+ <reference name="richsnippet.product.offer">
41
+ <block type="catalog/product_view_type_virtual" name="richsnippet.catalog.product_view_type_availability" template="richsnippet/catalog/product/view/type/availability/default.phtml" />
42
+ <block type="catalog/product_price" name="richsnippet.catalog.product_price" template="richsnippet/catalog/product/price.phtml" />
43
+ </reference>
44
+ </PRODUCT_TYPE_virtual>
45
+ <PRODUCT_TYPE_bundle>
46
+ <reference name="richsnippet.product.offer">
47
+ <block type="catalog/product_view_type_virtual" name="richsnippet.catalog.product_view_type_availability" template="richsnippet/catalog/product/view/type/availability/default.phtml" />
48
+ <block type="catalog/product_price" name="richsnippet.catalog.product_price" template="richsnippet/bundle/catalog/product/price.phtml" />
49
+ </reference>
50
+ </PRODUCT_TYPE_bundle>
51
+ </layout>
app/design/frontend/base/default/template/richsnippet/bundle/catalog/product/price.phtml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @var $this Mage_Bundle_Block_Catalog_Product_Price
4
+ */
5
+ /**
6
+ * @var $_taxHelper Mage_Tax_Helper_Data
7
+ */
8
+ $_taxHelper = $this->helper('tax');
9
+
10
+ /**
11
+ * @var $_product Mage_Catalog_Model_Product
12
+ * @var $_priceModel Mage_Bundle_Model_Product_Price
13
+ */
14
+ $_product = $this->getProduct();
15
+ $_priceModel = $_product->getPriceModel();
16
+
17
+ list($_minimalPriceTax, $_maximalPriceTax) = $_priceModel->getTotalPrices($_product, null, null, false);
18
+ ?>
19
+ <span itemprop="price" style="display: none;"><?php echo $_minimalPriceTax ?></span>
app/design/frontend/base/default/template/richsnippet/catalog/product/price.phtml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $_taxHelper = $this->helper('tax');
3
+ /* @var $_taxHelper Mage_Tax_Helper_Data */
4
+
5
+ $_product = $this->getProduct();
6
+ $_store = $_product->getStore();
7
+ $_convertedFinalPrice = $_store->roundPrice($_store->convertPrice($_product->getFinalPrice()));
8
+ $_finalPrice = $_taxHelper->getPrice($_product, $_convertedFinalPrice);
9
+ ?>
10
+
11
+ <span itemprop="price" style="display: none;"><?php echo $_finalPrice ?></span>
12
+ <?php $specialToDate = substr($_product->getSpecialToDate(), 0, 10); ?>
13
+ <?php if ($specialToDate >= date('Y-m-d')) { ?>
14
+ <time itemprop="priceValidUntil" datetime="<?php echo $specialToDate ?>"></time>
15
+ <?php } ?>
app/design/frontend/base/default/template/richsnippet/catalog/product/view.phtml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php $_helper = $this->helper('catalog/output'); ?>
2
+ <?php $_product = $this->getProduct(); ?>
3
+ <span itemprop="name" style="display: none;"><?php echo $_helper->productAttribute($_product, $_product->getName(), 'name') ?></span>
4
+ <span itemprop="identifier" content="sku:<?php echo $_product->getSku() ?>"></span>
5
+ <?php if ($brand = Mage::helper('richsnippet')->getBrand()) { ?>
6
+ <span itemprop="brand" style="display: none;"><?php echo $brand ?></span>
7
+ <?php } ?>
8
+ <?php if ($category = Mage::helper('richsnippet')->getCategory()) { ?>
9
+ <span itemprop="category" content="<?php echo $category ?>"></span>
10
+ <?php } ?>
11
+ <?php if ($_product->getShortDescription()):?>
12
+ <div itemprop="description" style="display: none;"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div>
13
+ <?php endif;?>
app/design/frontend/base/default/template/richsnippet/catalog/product/view/media.phtml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <img
2
+ style="display: none;"
3
+ itemprop="image" src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'image') ?>"
4
+ alt="<?php echo $this->escapeHtml($this->getImageLabel()) ?>"
5
+ title="<?php echo $this->escapeHtml($this->getImageLabel()); ?>" />
app/design/frontend/base/default/template/richsnippet/catalog/product/view/type/availability/default.phtml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php $_product = $this->getProduct(); ?>
2
+ <?php if ($_product->isAvailable()): ?>
3
+ <span itemprop="availability" content="in_stock"></span>
4
+ <?php else: ?>
5
+ <span itemprop="availability" content="out_of_stock"></span>
6
+ <?php endif; ?>
app/design/frontend/base/default/template/richsnippet/catalog/product/view/type/availability/grouped.phtml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $_product = $this->getProduct();
3
+ $_associatedProducts = $this->getAssociatedProducts();
4
+ $_hasAssociatedProducts = count($_associatedProducts) > 0;
5
+ ?>
6
+ <?php if ($_product->isAvailable() && $_hasAssociatedProducts): ?>
7
+ <span itemprop="availability" content="in_stock"></span>
8
+ <?php else: ?>
9
+ <span itemprop="availability" content="out_of_stock"></span>
10
+ <?php endif; ?>
app/design/frontend/base/default/template/richsnippet/page/html/breadcrumbs.phtml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php if($crumbs && is_array($crumbs)): ?>
28
+ <div class="breadcrumbs">
29
+ <ul>
30
+ <?php foreach($crumbs as $_crumbName=>$_crumbInfo): ?>
31
+ <li class="<?php echo $_crumbName ?>" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
32
+ <?php if($_crumbInfo['link']): ?>
33
+ <a itemprop="url" href="<?php echo $_crumbInfo['link'] ?>" title="<?php echo $this->escapeHtml($_crumbInfo['title']) ?>"><span itemprop="title"><?php echo $this->escapeHtml($_crumbInfo['label']) ?></span></a>
34
+ <?php elseif($_crumbInfo['last']): ?>
35
+ <strong itemprop="title"><?php echo $this->escapeHtml($_crumbInfo['label']) ?></strong>
36
+ <?php else: ?>
37
+ <span itemprop="title"><?php echo $this->escapeHtml($_crumbInfo['label']) ?></span>
38
+ <?php endif; ?>
39
+ <?php if(!$_crumbInfo['last']): ?>
40
+ <span>/ </span>
41
+ <?php endif; ?>
42
+ </li>
43
+ <?php endforeach; ?>
44
+ </ul>
45
+ </div>
46
+ <?php endif; ?>
app/design/frontend/base/default/template/richsnippet/product.phtml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <div itemscope itemtype="http://data-vocabulary.org/Product">
2
+ <?php echo $this->getChildHtml(); ?>
3
+ </div>
app/design/frontend/base/default/template/richsnippet/product/offer.phtml ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <div itemprop="offerDetails" itemscope itemtype="http://data-vocabulary.org/Offer">
2
+ <meta itemprop="currency" content="<?php echo Mage::app()->getStore()->getCurrentCurrencyCode() ?>" />
3
+ <span itemprop="condition" content="new"></span>
4
+ <?php echo $this->getChildHtml() ?>
5
+ </div>
app/etc/modules/NewsModules_RichSnippet.xml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <NewsModules_RichSnippet>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ <depends>
8
+ <Mage_Catalog/>
9
+ </depends>
10
+ </NewsModules_RichSnippet>
11
+ </modules>
12
+ </config>
js/newsmodules/richsnippet/adminhtml/catalog/category.js ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ RichSnippet_jQuery( document ).ready(function() {
2
+ setTimeout(function() { NewsModules_RichSnippet_CheckReady(); }, 1000);
3
+ });
4
+
5
+ function NewsModules_RichSnippet_CheckReady()
6
+ {
7
+ if (RichSnippet_jQuery('select#group_4richsnippet_category').is('*'))
8
+ {
9
+ setTimeout(function() { NewsModules_RichSnippet_Init(); }, 1000);
10
+ }
11
+ else
12
+ {
13
+ setTimeout(function() { NewsModules_RichSnippet_CheckReady(); }, 1000);
14
+ }
15
+ }
16
+
17
+ function NewsModules_RichSnippet_Init()
18
+ {
19
+ RichSnippet_jQuery('select#group_4richsnippet_category').focus(function() {
20
+ if (!RichSnippet_jQuery(this).hasClass('ready'))
21
+ {
22
+ var text_node = RichSnippet_jQuery('<p />').attr('id', 'richsnippet_category_text');
23
+ var node = RichSnippet_jQuery('select#group_4richsnippet_category');
24
+ node.attr('size', 10).css('width', '100%');
25
+ node.parent().append(text_node);
26
+
27
+ node.change(function() {
28
+ NewsModules_RichSnippet_DisplayCategoryName();
29
+ })
30
+ .keydown(function() {
31
+ NewsModules_RichSnippet_DisplayCategoryName();
32
+ });
33
+
34
+ RichSnippet_jQuery(this).addClass('ready');
35
+ }
36
+ });
37
+ }
38
+
39
+ function NewsModules_RichSnippet_DisplayCategoryName()
40
+ {
41
+ var node = RichSnippet_jQuery('select#group_4richsnippet_category');
42
+ var val = node.val();
43
+ var text = node.find("[value='"+val+"']").text();
44
+ RichSnippet_jQuery('#richsnippet_category_text').html(text);
45
+ }
js/newsmodules/richsnippet/jquery-1.11.1.min.js ADDED
@@ -0,0 +1,4 @@
 
 
1
+ /*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
2
+ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globa