cafepress-search 1.0.2 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,14 @@
1
+ .hoerc
2
+ .idea/.rakeTasks
3
+ .idea/cafepress-search.iml
4
+ .idea/encodings.xml
5
+ .idea/inspectionProfiles/Project_Default.xml
6
+ .idea/inspectionProfiles/profiles_settings.xml
7
+ .idea/misc.xml
8
+ .idea/modules.xml
9
+ .idea/projectCodeStyle.xml
10
+ .idea/vcs.xml
11
+ .idea/workspace.xml
1
12
  History.txt
2
13
  Manifest.txt
3
14
  README.rdoc
data/Rakefile CHANGED
@@ -9,10 +9,11 @@ $hoe = Hoe.spec 'cafepress-search' do
9
9
  self.version = Cafepress::Search::VERSION
10
10
  self.developer 'Britt Crawford', 'bcrawford@cafepress.com'
11
11
  self.developer 'Dimple Joseph', 'djoseph@cafepress.com'
12
- self.extra_deps = [["happymapper", "0.3.0"]]
12
+ self.developer 'Rebecca McInerney', 'rmcinerney@cafepress.com'
13
+ self.extra_deps = [["happymapper", "0.3.0"]]
13
14
  end
14
15
 
15
16
  require 'newgem/tasks'
16
17
  Dir['tasks/**/*.rake'].each { |t| load t }
17
18
 
18
- task :default => [:spec]
19
+ task :default => [:spec]
@@ -8,8 +8,8 @@ require 'cafepress/search/client'
8
8
 
9
9
  module Cafepress
10
10
  module Search
11
- VERSION = '1.0.2'
11
+ VERSION = '1.1.0'
12
12
 
13
13
  Client.base_url = "http://open-api.cafepress.com"
14
14
  end
15
- end
15
+ end
@@ -6,12 +6,19 @@ module Cafepress
6
6
  include HappyMapper
7
7
  tag 'product'
8
8
 
9
+ attribute :id, Integer, :tag => 'productNumber'
9
10
  attribute :merchandise_id, Integer, :tag => 'productTypeNumber'
10
11
  attribute :merchandise_name, String, :tag => 'item'
11
12
  attribute :price, String
12
- attribute :id, Integer, :tag => 'productNumber'
13
+ attribute :marketplace_price, String, :tag => 'marketplacePrice'
14
+ attribute :caption, String
15
+ attribute :seller_description, String, :tag => 'sellerDescription'
13
16
  attribute :thumbnail_url, String, :tag => 'thumbnailUrl'
14
17
  attribute :detail_page_url, String, :tag => 'marketplaceUrl'
18
+ attribute :store_name, String, :tag => 'storeName'
19
+ attribute :store_url, String, :tag => 'storeUrl'
20
+ attribute :parent_section_name, String, :tag => 'parentSectionName'
21
+ attribute :parent_section_url, String, :tag => 'parentSectionUrl'
15
22
  end
16
23
  end
17
24
  end
@@ -9,29 +9,56 @@ describe Cafepress::Search::Product do
9
9
  @product = Cafepress::Search::Product.parse(@result_xml).first
10
10
  end
11
11
 
12
+ it "should have a product id" do
13
+ @product.id.should == 61897566
14
+ end
15
+
12
16
  it "should have a merchandise_id" do
13
- @product.merchandise_id.should == 4
17
+ @product.merchandise_id.should == 137
14
18
  end
15
19
 
16
20
  it "should have a merchandise_name" do
17
- @product.merchandise_name.should == "Sweatshirt"
21
+ @product.merchandise_name.should == "Rectangle Magnet"
18
22
  end
19
23
 
20
24
  it "should have a price" do
21
- @product.price.should == "$32.99"
25
+ @product.price.should == "$5.49"
22
26
  end
23
27
 
28
+ it "should have a marketplace price" do
29
+ @product.marketplace_price.should == "5.00"
30
+ end
24
31
 
25
- it "should have an id" do
26
- @product.id.should == 384814123
32
+ it "should have a caption" do
33
+ @product.caption.should == "Kiss Dog Lips Rectangle Magnet"
34
+ end
35
+
36
+ it "should have a seller description" do
37
+ @product.seller_description.should == "I kiss my dog on the lips."
27
38
  end
28
39
 
29
40
  it "should have a thumbnail_url" do
30
- @product.thumbnail_url.should == 'http://www.cafepress.com/cp/search/image.aspx?p=384814123&i=34016862'
41
+ @product.thumbnail_url.should == 'http://www.cafepress.com/cp/search/image.aspx?p=61897566&i=13012560'
31
42
  end
32
43
 
33
44
  it "should have a detail_page_url" do
34
- @product.detail_page_url.should == 'http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4102863.384814123/pNo_384814123/id_34016862'
45
+ @product.detail_page_url.should == 'http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.61897566/pNo_61897566/id_13012560'
46
+ end
47
+
48
+ it "should have a store_name" do
49
+ @product.store_name.should == 'Dog Hause Pet Shop Promoting Spay Neuter & Rescue'
50
+ end
51
+
52
+ it "should have a store_url" do
53
+ @product.store_url.should == 'http://www.cafepress.com/doghause'
54
+ end
55
+
56
+ it "should have a parent_section_name" do
57
+ @product.parent_section_name.should == 'Kiss Dog Lips'
58
+ end
59
+
60
+ it "should have a parent_section_url" do
61
+ @product.parent_section_url.should == 'http://www.cafepress.com/doghause/949957'
35
62
  end
36
63
  end
37
64
 
@@ -22,11 +22,11 @@ describe Cafepress::Search::SearchResultSet do
22
22
  end
23
23
 
24
24
  it "should know the total number of designs for this query" do
25
- @results.total_designs.should == 553352
25
+ @results.total_designs.should == 519187
26
26
  end
27
27
 
28
28
  it "should know the total number of products for this query" do
29
- @results.total_products.should == 17744462
29
+ @results.total_products.should == 16153172
30
30
  end
31
31
 
32
32
  it "should load the starting result index" do
@@ -45,10 +45,10 @@ describe Cafepress::Search::SearchResultSet do
45
45
  'puppy',
46
46
  'gifts',
47
47
  'animals',
48
- 'art',
49
48
  'breeds',
50
- 'breed',
51
- 'humor'
49
+ 'art',
50
+ 'humor',
51
+ 'purebred'
52
52
  ]
53
53
  end
54
54
 
@@ -14,15 +14,15 @@ describe Cafepress::Search::SearchResult do
14
14
  end
15
15
 
16
16
  it "should have a design_url" do
17
- @result.design_url.should == 'http://images.cafepress.com/image/34016862_125x125.jpg'
17
+ @result.design_url.should == 'http://images.cafepress.com/image/13012560_125x125.jpg'
18
18
  end
19
19
 
20
20
  it "should have a design_detail_page_url" do
21
- @result.design_detail_page_url.should == 'http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_34016862/hlv_1'
21
+ @result.design_detail_page_url.should == 'http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_13012560/hlv_1'
22
22
  end
23
23
 
24
24
  it "should have a design_id" do
25
- @result.design_id.should == 34016862
25
+ @result.design_id.should == 13012560
26
26
  end
27
27
 
28
28
  it "should have products" do
@@ -1,390 +1,1663 @@
1
- <searchResultSet totalDesigns="553352" totalProducts="17744462" startResult="0" resultLength="60" version="1" sort="by_score_desc">
2
- <mainResults>
3
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/34016862_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_34016862/hlv_1" mediaId="34016862">
4
- <products total="3">
5
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=384814123&amp;i=34016862" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4102863.384814123/pNo_384814123/id_34016862" productTypeNumber="4" item="Sweatshirt" price="$32.99" productNumber="384814123" />
6
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=384814095&amp;i=34016862" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4102863.384814095/pNo_384814095/id_34016862" productTypeNumber="17" item="Tote Bag" price="$15.99" productNumber="384814095" />
7
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=384814046&amp;i=34016862" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4102863.384814046/pNo_384814046/id_34016862" productTypeNumber="211" item="Sticker (Oval 10 pk)" price="$25.49" productNumber="384814046" />
8
- </products>
9
- </searchResultItem>
10
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/9792844_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_9792844/hlv_1" mediaId="9792844">
11
- <products total="3">
12
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=38971834&amp;i=9792844" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_805040.38971834/pNo_38971834/id_9792844" productTypeNumber="109" item="Women's Light T-Shirt" price="$22.99" productNumber="38971834" />
13
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=38971830&amp;i=9792844" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_805040.38971830/pNo_38971830/id_9792844" productTypeNumber="4" item="Sweatshirt" price="$37.99" productNumber="38971830" />
14
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=38971828&amp;i=9792844" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_805040.38971828/pNo_38971828/id_9792844" productTypeNumber="51" item="Sticker (Oval)" price="$5.24" productNumber="38971828" />
15
- </products>
16
- </searchResultItem>
17
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/8628040_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_8628040/hlv_1" mediaId="8628040">
18
- <products total="1">
19
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33212906&amp;i=8628040" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_925290.33212906/pNo_33212906/id_8628040" productTypeNumber="51" item="Sticker (Oval)" price="$4.89" productNumber="33212906" />
20
- </products>
21
- </searchResultItem>
22
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/23666856_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_23666856/hlv_1" mediaId="23666856">
23
- <products total="3">
24
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=192741364&amp;i=23666856" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.192741364/pNo_192741364/id_23666856" productTypeNumber="137" item="Rectangle Magnet" price="$6.99" productNumber="192741364" />
25
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=198074322&amp;i=23666856" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.198074322/pNo_198074322/id_23666856" productTypeNumber="136" item="Kids Baseball Jersey" price="$24.99" productNumber="198074322" />
26
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=198074321&amp;i=23666856" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.198074321/pNo_198074321/id_23666856" productTypeNumber="135" item="Kids Sweatshirt" price="$24.99" productNumber="198074321" />
27
- </products>
28
- </searchResultItem>
29
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36634135_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36634135/hlv_1" mediaId="36634135">
30
- <products total="1">
31
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=342790328&amp;i=36634135" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3830887.342790328/pNo_342790328/id_36634135" productTypeNumber="75" item="Wall Calendar" price="$15.99" productNumber="342790328" />
32
- </products>
33
- </searchResultItem>
34
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36571536_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36571536/hlv_1" mediaId="36571536">
35
- <products total="1">
36
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=175841939&amp;i=36571536" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_288352.175841939/pNo_175841939/id_36571536" productTypeNumber="75" item="Wall Calendar" price="$20.99" productNumber="175841939" />
37
- </products>
38
- </searchResultItem>
39
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36952580_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36952580/hlv_1" mediaId="36952580">
40
- <products total="1">
41
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=331719769&amp;i=36952580" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2082258.331719769/pNo_331719769/id_36952580" productTypeNumber="75" item="Wall Calendar" price="$18.99" productNumber="331719769" />
42
- </products>
43
- </searchResultItem>
44
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36864467_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36864467/hlv_1" mediaId="36864467">
45
- <products total="1">
46
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420340504&amp;i=36864467" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1145885.420340504/pNo_420340504/id_36864467" productTypeNumber="75" item="Wall Calendar" price="$17.19" productNumber="420340504" />
47
- </products>
48
- </searchResultItem>
49
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/24647413_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_24647413/hlv_1" mediaId="24647413">
50
- <products total="3">
51
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=202829476&amp;i=24647413" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_700246.202829476/pNo_202829476/id_24647413" productTypeNumber="37" item="Tile Coaster" price="$13.50" productNumber="202829476" />
52
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=202829474&amp;i=24647413" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_700246.202829474/pNo_202829474/id_24647413" productTypeNumber="147" item="Framed Tile" price="$19.00" productNumber="202829474" />
53
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=9130505&amp;i=24647413" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_700246.9130505/pNo_9130505/id_24647413" productTypeNumber="49" item="Wall Clock" price="$25.00" productNumber="9130505" />
54
- </products>
55
- </searchResultItem>
56
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36491316_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36491316/hlv_1" mediaId="36491316">
57
- <products total="3">
58
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417786090&amp;i=36491316" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1963107.417786090/pNo_417786090/id_36491316" productTypeNumber="105" item="Ornament (Oval)" price="$12.99" productNumber="417786090" />
59
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417786089&amp;i=36491316" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1963107.417786089/pNo_417786089/id_36491316" productTypeNumber="124" item="Ornament (Round) " price="$12.99" productNumber="417786089" />
60
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417786139&amp;i=36491316" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1963107.417786139/pNo_417786139/id_36491316" productTypeNumber="193" item="Greeting Cards (Pk of 20)" price="$30.99" productNumber="417786139" />
61
- </products>
62
- </searchResultItem>
63
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35140694_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35140694/hlv_1" mediaId="35140694">
64
- <products total="1">
65
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=401979709&amp;i=35140694" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_733140.401979709/pNo_401979709/id_35140694" productTypeNumber="75" item="Wall Calendar" price="$20.99" productNumber="401979709" />
66
- </products>
67
- </searchResultItem>
68
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/21713488_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_21713488/hlv_1" mediaId="21713488">
69
- <products total="3">
70
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163131781&amp;i=21713488" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340605.163131781/pNo_163131781/id_21713488" productTypeNumber="137" item="Rectangle Magnet" price="$6.49" productNumber="163131781" />
71
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163131804&amp;i=21713488" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340605.163131804/pNo_163131804/id_21713488" productTypeNumber="51" item="Sticker (Oval)" price="$5.99" productNumber="163131804" />
72
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163131832&amp;i=21713488" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340605.163131832/pNo_163131832/id_21713488" productTypeNumber="4" item="Sweatshirt" price="$42.99" productNumber="163131832" />
73
- </products>
74
- </searchResultItem>
75
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36409737_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36409737/hlv_1" mediaId="36409737">
76
- <products total="2">
77
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417130905&amp;i=36409737" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_872478.417130905/pNo_417130905/id_36409737" productTypeNumber="75" item="Wall Calendar" price="$16.99" productNumber="417130905" />
78
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417130906&amp;i=36409737" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_872478.417130906/pNo_417130906/id_36409737" productTypeNumber="74" item="Calendar Print" price="$5.99" productNumber="417130906" />
79
- </products>
80
- </searchResultItem>
81
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36582320_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36582320/hlv_1" mediaId="36582320">
82
- <products total="1">
83
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=418420673&amp;i=36582320" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4636007.418420673/pNo_418420673/id_36582320" productTypeNumber="75" item="Wall Calendar" price="$17.99" productNumber="418420673" />
84
- </products>
85
- </searchResultItem>
86
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/9015496_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_9015496/hlv_1" mediaId="9015496">
87
- <products total="3">
88
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33779869&amp;i=9015496" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_965872.33779869/pNo_33779869/id_9015496" productTypeNumber="137" item="Rectangle Magnet" price="$4.49" productNumber="33779869" />
89
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33779874&amp;i=9015496" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_965872.33779874/pNo_33779874/id_9015496" productTypeNumber="4" item="Sweatshirt" price="$31.99" productNumber="33779874" />
90
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33779875&amp;i=9015496" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_965872.33779875/pNo_33779875/id_9015496" productTypeNumber="37" item="Tile Coaster" price="$5.99" productNumber="33779875" />
91
- </products>
92
- </searchResultItem>
93
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36529171_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36529171/hlv_1" mediaId="36529171">
94
- <products total="1">
95
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417292463&amp;i=36529171" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2301651.417292463/pNo_417292463/id_36529171" productTypeNumber="75" item="Wall Calendar" price="$19.99" productNumber="417292463" />
96
- </products>
97
- </searchResultItem>
98
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35842275_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35842275/hlv_1" mediaId="35842275">
99
- <products total="1">
100
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=411106039&amp;i=35842275" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_683518.411106039/pNo_411106039/id_35842275" productTypeNumber="75" item="Wall Calendar" price="$19.99" productNumber="411106039" />
101
- </products>
102
- </searchResultItem>
103
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36752800_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36752800/hlv_1" mediaId="36752800">
104
- <products total="3">
105
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419677553&amp;i=36752800" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4689508.419677553/pNo_419677553/id_36752800" productTypeNumber="100" item="Journal" price="$12.99" productNumber="419677553" />
106
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419677555&amp;i=36752800" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4689508.419677555/pNo_419677555/id_36752800" productTypeNumber="0" item="Mug " price="$13.99" productNumber="419677555" />
107
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419677556&amp;i=36752800" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4689508.419677556/pNo_419677556/id_36752800" productTypeNumber="78" item="Greeting Cards (Pk of 10)" price="$18.99" productNumber="419677556" />
108
- </products>
109
- </searchResultItem>
110
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/27688366_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_27688366/hlv_1" mediaId="27688366">
111
- <products total="3">
112
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=416869572&amp;i=27688366" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2983160.416869572/pNo_416869572/id_27688366" productTypeNumber="159" item="Men's Fitted T-Shirt (dark)" price="$25.29" productNumber="416869572" />
113
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=416869570&amp;i=27688366" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2983160.416869570/pNo_416869570/id_27688366" productTypeNumber="251" item="Organic Men's T-Shirt (dark)" price="$27.59" productNumber="416869570" />
114
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=416869568&amp;i=27688366" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2983160.416869568/pNo_416869568/id_27688366" productTypeNumber="253" item="Organic Women's T-Shirt (dark)" price="$27.59" productNumber="416869568" />
115
- </products>
116
- </searchResultItem>
117
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/34624539_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_34624539/hlv_1" mediaId="34624539">
118
- <products total="3">
119
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=396334000&amp;i=34624539" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_921941.396334000/pNo_396334000/id_34624539" productTypeNumber="105" item="Ornament (Oval)" price="$8.99" productNumber="396334000" />
120
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=396334016&amp;i=34624539" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_921941.396334016/pNo_396334016/id_34624539" productTypeNumber="2" item="White T-Shirt " price="$18.99" productNumber="396334016" />
121
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=396333988&amp;i=34624539" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_921941.396333988/pNo_396333988/id_34624539" productTypeNumber="78" item="Greeting Cards (Pk of 10)" price="$18.99" productNumber="396333988" />
122
- </products>
123
- </searchResultItem>
124
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/29356115_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_29356115/hlv_1" mediaId="29356115">
125
- <products total="1">
126
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=291121801&amp;i=29356115" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1239090.291121801/pNo_291121801/id_29356115" productTypeNumber="75" item="Wall Calendar" price="$21.99" productNumber="291121801" />
127
- </products>
128
- </searchResultItem>
129
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36783705_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36783705/hlv_1" mediaId="36783705">
130
- <products total="3">
131
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419878200&amp;i=36783705" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3962525.419878200/pNo_419878200/id_36783705" productTypeNumber="287" item="Apron (dark)" price="$21.99" productNumber="419878200" />
132
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419878201&amp;i=36783705" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3962525.419878201/pNo_419878201/id_36783705" productTypeNumber="281" item="Sigg Water Bottle 0.6L" price="$24.99" productNumber="419878201" />
133
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419878202&amp;i=36783705" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3962525.419878202/pNo_419878202/id_36783705" productTypeNumber="280" item="Sigg Water Bottle 1.0L" price="$27.99" productNumber="419878202" />
134
- </products>
135
- </searchResultItem>
136
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/23311374_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_23311374/hlv_1" mediaId="23311374">
137
- <products total="3">
138
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=200358118&amp;i=23311374" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.200358118/pNo_200358118/id_23311374" productTypeNumber="7" item="Light T-Shirt" price="$24.99" productNumber="200358118" />
139
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=200358119&amp;i=23311374" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.200358119/pNo_200358119/id_23311374" productTypeNumber="183" item="Women's Plus Size Scoop Neck T-Shirt" price="$34.99" productNumber="200358119" />
140
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=200358120&amp;i=23311374" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.200358120/pNo_200358120/id_23311374" productTypeNumber="185" item="Women's Plus Size V-Neck T-Shirt" price="$34.99" productNumber="200358120" />
141
- </products>
142
- </searchResultItem>
143
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36529328_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36529328/hlv_1" mediaId="36529328">
144
- <products total="3">
145
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=418050352&amp;i=36529328" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3011562.418050352/pNo_418050352/id_36529328" productTypeNumber="2" item="White T-Shirt " price="$17.99" productNumber="418050352" />
146
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=418050348&amp;i=36529328" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3011562.418050348/pNo_418050348/id_36529328" productTypeNumber="114" item="Women's Tank Top" price="$14.99" productNumber="418050348" />
147
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=418050351&amp;i=36529328" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3011562.418050351/pNo_418050351/id_36529328" productTypeNumber="89" item="Women's T-Shirt" price="$17.99" productNumber="418050351" />
148
- </products>
149
- </searchResultItem>
150
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36870926_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36870926/hlv_1" mediaId="36870926">
151
- <products total="3">
152
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420321452&amp;i=36870926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_861066.420321452/pNo_420321452/id_36870926" productTypeNumber="244" item="Hoodie (dark)" price="$39.99" productNumber="420321452" />
153
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420321454&amp;i=36870926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_861066.420321454/pNo_420321454/id_36870926" productTypeNumber="246" item="Zip Hoodie (dark)" price="$45.99" productNumber="420321454" />
154
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420321461&amp;i=36870926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_861066.420321461/pNo_420321461/id_36870926" productTypeNumber="152" item="Dark T-Shirt" price="$24.99" productNumber="420321461" />
155
- </products>
156
- </searchResultItem>
157
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/34155609_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_34155609/hlv_1" mediaId="34155609">
158
- <products total="3">
159
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=387506171&amp;i=34155609" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_915321.387506171/pNo_387506171/id_34155609" productTypeNumber="124" item="Ornament (Round) " price="$10.99" productNumber="387506171" />
160
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=387506170&amp;i=34155609" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_915321.387506170/pNo_387506170/id_34155609" productTypeNumber="126" item="Ringer T" price="$22.99" productNumber="387506170" />
161
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=387506168&amp;i=34155609" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_915321.387506168/pNo_387506168/id_34155609" productTypeNumber="17" item="Tote Bag" price="$20.99" productNumber="387506168" />
162
- </products>
163
- </searchResultItem>
164
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36431325_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36431325/hlv_1" mediaId="36431325">
165
- <products total="3">
166
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309078&amp;i=36431325" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309078/pNo_417309078/id_36431325" productTypeNumber="152" item="Dark T-Shirt" price="$22.99" productNumber="417309078" />
167
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417310258&amp;i=36431325" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417310258/pNo_417310258/id_36431325" productTypeNumber="167" item="Women's V-Neck Dark T-Shirt" price="$23.99" productNumber="417310258" />
168
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=422248759&amp;i=36431325" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.422248759/pNo_422248759/id_36431325" productTypeNumber="244" item="Hoodie (dark)" price="$37.99" productNumber="422248759" />
169
- </products>
170
- </searchResultItem>
171
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/28268108_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_28268108/hlv_1" mediaId="28268108">
172
- <products total="1">
173
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=272435702&amp;i=28268108" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2499518.272435702/pNo_272435702/id_28268108" productTypeNumber="49" item="Wall Clock" price="$14.99" productNumber="272435702" />
174
- </products>
175
- </searchResultItem>
176
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/23079650_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_23079650/hlv_1" mediaId="23079650">
177
- <products total="1">
178
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=187436509&amp;i=23079650" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.187436509/pNo_187436509/id_23079650" productTypeNumber="51" item="Sticker (Oval)" price="$5.49" productNumber="187436509" />
179
- </products>
180
- </searchResultItem>
181
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36947939_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36947939/hlv_1" mediaId="36947939">
182
- <products total="3">
183
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420815167&amp;i=36947939" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4724700.420815167/pNo_420815167/id_36947939" productTypeNumber="165" item="Women's Long Sleeve T-Shirt" price="$21.99" productNumber="420815167" />
184
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420815166&amp;i=36947939" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4724700.420815166/pNo_420815166/id_36947939" productTypeNumber="247" item="Women's Zip Hoodie" price="$37.99" productNumber="420815166" />
185
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420815176&amp;i=36947939" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4724700.420815176/pNo_420815176/id_36947939" productTypeNumber="134" item="Women's Cap Sleeve T-Shirt" price="$18.99" productNumber="420815176" />
186
- </products>
187
- </searchResultItem>
188
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/32884050_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_32884050/hlv_1" mediaId="32884050">
189
- <products total="1">
190
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=356269408&amp;i=32884050" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3903981.356269408/pNo_356269408/id_32884050" productTypeNumber="220" item="Ceramic Travel Mug" price="$21.99" productNumber="356269408" />
191
- </products>
192
- </searchResultItem>
193
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36240098_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36240098/hlv_1" mediaId="36240098">
194
- <products total="3">
195
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=201609622&amp;i=36240098" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2802797.201609622/pNo_201609622/id_36240098" productTypeNumber="4" item="Sweatshirt" price="$31.99" productNumber="201609622" />
196
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=203311752&amp;i=36240098" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2802797.203311752/pNo_203311752/id_36240098" productTypeNumber="165" item="Women's Long Sleeve T-Shirt" price="$20.99" productNumber="203311752" />
197
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=218999030&amp;i=36240098" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2802797.218999030/pNo_218999030/id_36240098" productTypeNumber="6" item="Jr. Jersey T-Shirt" price="$21.99" productNumber="218999030" />
198
- </products>
199
- </searchResultItem>
200
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36752415_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36752415/hlv_1" mediaId="36752415">
201
- <products total="3">
202
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419683658&amp;i=36752415" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2908889.419683658/pNo_419683658/id_36752415" productTypeNumber="45" item="Golf Shirt" price="$19.99" productNumber="419683658" />
203
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419683659&amp;i=36752415" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2908889.419683659/pNo_419683659/id_36752415" productTypeNumber="106" item="Fitted T-Shirt" price="$18.99" productNumber="419683659" />
204
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419683656&amp;i=36752415" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2908889.419683656/pNo_419683656/id_36752415" productTypeNumber="103" item="Jr. Hoodie" price="$27.99" productNumber="419683656" />
205
- </products>
206
- </searchResultItem>
207
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36755253_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36755253/hlv_1" mediaId="36755253">
208
- <products total="2">
209
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=348941305&amp;i=36755253" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1145885.348941305/pNo_348941305/id_36755253" productTypeNumber="124" item="Ornament (Round) " price="$6.89" productNumber="348941305" />
210
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=348941304&amp;i=36755253" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1145885.348941304/pNo_348941304/id_36755253" productTypeNumber="105" item="Ornament (Oval)" price="$6.89" productNumber="348941304" />
211
- </products>
212
- </searchResultItem>
213
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/31543951_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_31543951/hlv_1" mediaId="31543951">
214
- <products total="3">
215
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=333114145&amp;i=31543951" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2657663.333114145/pNo_333114145/id_31543951" productTypeNumber="124" item="Ornament (Round) " price="$12.00" productNumber="333114145" />
216
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=333114146&amp;i=31543951" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2657663.333114146/pNo_333114146/id_31543951" productTypeNumber="105" item="Ornament (Oval)" price="$12.00" productNumber="333114146" />
217
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=415439616&amp;i=31543951" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2657663.415439616/pNo_415439616/id_31543951" productTypeNumber="220" item="Ceramic Travel Mug" price="$22.00" productNumber="415439616" />
218
- </products>
219
- </searchResultItem>
220
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36989465_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36989465/hlv_1" mediaId="36989465">
221
- <products total="3">
222
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=421085095&amp;i=36989465" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4732689.421085095/pNo_421085095/id_36989465" productTypeNumber="260" item="Organic Men's Fitted T-Shirt (dark)" price="$22.99" productNumber="421085095" />
223
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=421085094&amp;i=36989465" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4732689.421085094/pNo_421085094/id_36989465" productTypeNumber="263" item="Women's Fitted T-Shirt (dark)" price="$21.99" productNumber="421085094" />
224
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=421085093&amp;i=36989465" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4732689.421085093/pNo_421085093/id_36989465" productTypeNumber="4" item="Sweatshirt" price="$29.99" productNumber="421085093" />
225
- </products>
226
- </searchResultItem>
227
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36082045_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36082045/hlv_1" mediaId="36082045">
228
- <products total="1">
229
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=414059045&amp;i=36082045" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2147899.414059045/pNo_414059045/id_36082045" productTypeNumber="105" item="Ornament (Oval)" price="$10.99" productNumber="414059045" />
230
- </products>
231
- </searchResultItem>
232
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/23129911_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_23129911/hlv_1" mediaId="23129911">
233
- <products total="1">
234
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=188518536&amp;i=23129911" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.188518536/pNo_188518536/id_23129911" productTypeNumber="90" item="Sticker (Bumper)" price="$6.49" productNumber="188518536" />
235
- </products>
236
- </searchResultItem>
237
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36431322_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36431322/hlv_1" mediaId="36431322">
238
- <products total="3">
239
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309076&amp;i=36431322" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309076/pNo_417309076/id_36431322" productTypeNumber="161" item="Women's Dark T-Shirt" price="$23.99" productNumber="417309076" />
240
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309079&amp;i=36431322" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309079/pNo_417309079/id_36431322" productTypeNumber="134" item="Women's Cap Sleeve T-Shirt" price="$22.99" productNumber="417309079" />
241
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309080&amp;i=36431322" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309080/pNo_417309080/id_36431322" productTypeNumber="134" item="Women's Cap Sleeve T-Shirt" price="$19.99" productNumber="417309080" />
242
- </products>
243
- </searchResultItem>
244
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36968926_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36968926/hlv_1" mediaId="36968926">
245
- <products total="3">
246
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420949600&amp;i=36968926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1289970.420949600/pNo_420949600/id_36968926" productTypeNumber="42" item="Apron" price="$17.99" productNumber="420949600" />
247
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420949589&amp;i=36968926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1289970.420949589/pNo_420949589/id_36968926" productTypeNumber="82" item="Framed Panel Print" price="$35.99" productNumber="420949589" />
248
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420949588&amp;i=36968926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1289970.420949588/pNo_420949588/id_36968926" productTypeNumber="192" item="Greeting Card" price="$3.49" productNumber="420949588" />
249
- </products>
250
- </searchResultItem>
251
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36385828_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36385828/hlv_1" mediaId="36385828">
252
- <products total="1">
253
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=324687709&amp;i=36385828" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_288352.324687709/pNo_324687709/id_36385828" productTypeNumber="163" item="Vertical Wall Calendar" price="$21.99" productNumber="324687709" />
254
- </products>
255
- </searchResultItem>
256
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36479341_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36479341/hlv_1" mediaId="36479341">
257
- <products total="1">
258
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417881426&amp;i=36479341" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2614159.417881426/pNo_417881426/id_36479341" productTypeNumber="162" item="Oversized Wall Calendar" price="$24.99" productNumber="417881426" />
259
- </products>
260
- </searchResultItem>
261
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/28566422_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_28566422/hlv_1" mediaId="28566422">
262
- <products total="3">
263
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=300270851&amp;i=28566422" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1043520.300270851/pNo_300270851/id_28566422" productTypeNumber="124" item="Ornament (Round) " price="$12.99" productNumber="300270851" />
264
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=320184683&amp;i=28566422" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3208400.320184683/pNo_320184683/id_28566422" productTypeNumber="37" item="Tile Coaster" price="$9.99" productNumber="320184683" />
265
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=320184700&amp;i=28566422" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3208400.320184700/pNo_320184700/id_28566422" productTypeNumber="4" item="Sweatshirt" price="$43.99" productNumber="320184700" />
266
- </products>
267
- </searchResultItem>
268
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36166256_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36166256/hlv_1" mediaId="36166256">
269
- <products total="3">
270
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=414874374&amp;i=36166256" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2635499.414874374/pNo_414874374/id_36166256" productTypeNumber="105" item="Ornament (Oval)" price="$7.99" productNumber="414874374" />
271
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=414873246&amp;i=36166256" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2635499.414873246/pNo_414873246/id_36166256" productTypeNumber="184" item="Women's Plus Size Dark Scoop Neck T-Shirt" price="$33.19" productNumber="414873246" />
272
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=414873247&amp;i=36166256" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2635499.414873247/pNo_414873247/id_36166256" productTypeNumber="183" item="Women's Plus Size Scoop Neck T-Shirt" price="$33.19" productNumber="414873247" />
273
- </products>
274
- </searchResultItem>
275
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36770192_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36770192/hlv_1" mediaId="36770192">
276
- <products total="2">
277
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=420117518&amp;i=36770192" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4159764.420117518/pNo_420117518/id_36770192" productTypeNumber="280" item="Sigg Water Bottle 1.0L" price="$27.99" productNumber="420117518" />
278
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=419762811&amp;i=36770192" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4159764.419762811/pNo_419762811/id_36770192" productTypeNumber="51" item="Sticker (Oval)" price="$4.00" productNumber="419762811" />
279
- </products>
280
- </searchResultItem>
281
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/13178295_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_13178295/hlv_1" mediaId="13178295">
282
- <products total="3">
283
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=63458631&amp;i=13178295" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.63458631/pNo_63458631/id_13178295" productTypeNumber="137" item="Rectangle Magnet" price="$5.49" productNumber="63458631" />
284
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=63458615&amp;i=13178295" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.63458615/pNo_63458615/id_13178295" productTypeNumber="139" item="Rectangle Magnet (100 pack)" price="$164.99" productNumber="63458615" />
285
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=63458616&amp;i=13178295" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.63458616/pNo_63458616/id_13178295" productTypeNumber="138" item="Rectangle Magnet (10 pack)" price="$25.99" productNumber="63458616" />
286
- </products>
287
- </searchResultItem>
288
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/23129329_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_23129329/hlv_1" mediaId="23129329">
289
- <products total="1">
290
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=188505921&amp;i=23129329" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1280468.188505921/pNo_188505921/id_23129329" productTypeNumber="90" item="Sticker (Bumper)" price="$6.49" productNumber="188505921" />
291
- </products>
292
- </searchResultItem>
293
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35236926_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35236926/hlv_1" mediaId="35236926">
294
- <products total="3">
295
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=402884356&amp;i=35236926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1043379.402884356/pNo_402884356/id_35236926" productTypeNumber="15" item="Boxer Shorts" price="$17.99" productNumber="402884356" />
296
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=402884289&amp;i=35236926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1043379.402884289/pNo_402884289/id_35236926" productTypeNumber="111" item="Organic Men's Fitted T-Shirt" price="$27.99" productNumber="402884289" />
297
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=402884291&amp;i=35236926" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1043379.402884291/pNo_402884291/id_35236926" productTypeNumber="113" item="Jr. Ringer T-Shirt" price="$24.99" productNumber="402884291" />
298
- </products>
299
- </searchResultItem>
300
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35768186_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35768186/hlv_1" mediaId="35768186">
301
- <products total="3">
302
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=175564975&amp;i=35768186" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_441674.175564975/pNo_175564975/id_35768186" productTypeNumber="162" item="Oversized Wall Calendar" price="$26.99" productNumber="175564975" />
303
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=175596334&amp;i=35768186" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_745353.175596334/pNo_175596334/id_35768186" productTypeNumber="162" item="Oversized Wall Calendar" price="$24.99" productNumber="175596334" />
304
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=175592579&amp;i=35768186" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_643607.175592579/pNo_175592579/id_35768186" productTypeNumber="162" item="Oversized Wall Calendar" price="$24.99" productNumber="175592579" />
305
- </products>
306
- </searchResultItem>
307
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/29295449_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_29295449/hlv_1" mediaId="29295449">
308
- <products total="3">
309
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=289513984&amp;i=29295449" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340296.289513984/pNo_289513984/id_29295449" productTypeNumber="17" item="Tote Bag" price="$16.99" productNumber="289513984" />
310
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=289513985&amp;i=29295449" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340296.289513985/pNo_289513985/id_29295449" productTypeNumber="74" item="Calendar Print" price="$7.99" productNumber="289513985" />
311
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=289513986&amp;i=29295449" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340296.289513986/pNo_289513986/id_29295449" productTypeNumber="82" item="Framed Panel Print" price="$38.99" productNumber="289513986" />
312
- </products>
313
- </searchResultItem>
314
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/37032391_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_37032391/hlv_1" mediaId="37032391">
315
- <products total="1">
316
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=91506493&amp;i=37032391" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_342768.91506493/pNo_91506493/id_37032391" productTypeNumber="75" item="Wall Calendar" price="$18.99" productNumber="91506493" />
317
- </products>
318
- </searchResultItem>
319
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35647128_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35647128/hlv_1" mediaId="35647128">
320
- <products total="1">
321
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=196308808&amp;i=35647128" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2150453.196308808/pNo_196308808/id_35647128" productTypeNumber="75" item="Wall Calendar" price="$29.99" productNumber="196308808" />
322
- </products>
323
- </searchResultItem>
324
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36986616_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36986616/hlv_1" mediaId="36986616">
325
- <products total="3">
326
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=421066124&amp;i=36986616" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4647028.421066124/pNo_421066124/id_36986616" productTypeNumber="203" item="3.5&quot; Button" price="$4.39" productNumber="421066124" />
327
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=421066125&amp;i=36986616" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4647028.421066125/pNo_421066125/id_36986616" productTypeNumber="143" item="Mini Button (100 pack)" price="$87.49" productNumber="421066125" />
328
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=421066126&amp;i=36986616" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4647028.421066126/pNo_421066126/id_36986616" productTypeNumber="142" item="Mini Button (10 pack)" price="$9.99" productNumber="421066126" />
329
- </products>
330
- </searchResultItem>
331
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/37155487_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_37155487/hlv_1" mediaId="37155487">
332
- <products total="1">
333
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=421890026&amp;i=37155487" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2843381.421890026/pNo_421890026/id_37155487" productTypeNumber="90" item="Sticker (Bumper)" price="$5.48" productNumber="421890026" />
334
- </products>
335
- </searchResultItem>
336
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35635206_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35635206/hlv_1" mediaId="35635206">
337
- <products total="1">
338
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=408471111&amp;i=35635206" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2759676.408471111/pNo_408471111/id_35635206" productTypeNumber="162" item="Oversized Wall Calendar" price="$25.00" productNumber="408471111" />
339
- </products>
340
- </searchResultItem>
341
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/26803405_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_26803405/hlv_1" mediaId="26803405">
342
- <products total="3">
343
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=243212091&amp;i=26803405" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1073097.243212091/pNo_243212091/id_26803405" productTypeNumber="152" item="Dark T-Shirt" price="$23.99" productNumber="243212091" />
344
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=243212060&amp;i=26803405" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1073097.243212060/pNo_243212060/id_26803405" productTypeNumber="155" item="Long Sleeve Dark T-Shirt" price="$28.99" productNumber="243212060" />
345
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=243212009&amp;i=26803405" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1073097.243212009/pNo_243212009/id_26803405" productTypeNumber="161" item="Women's Dark T-Shirt" price="$24.99" productNumber="243212009" />
346
- </products>
347
- </searchResultItem>
348
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35487326_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35487326/hlv_1" mediaId="35487326">
349
- <products total="3">
350
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=412718724&amp;i=35487326" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4405912.412718724/pNo_412718724/id_35487326" productTypeNumber="75" item="Wall Calendar" price="$17.99" productNumber="412718724" />
351
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=410812270&amp;i=35487326" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4405912.410812270/pNo_410812270/id_35487326" productTypeNumber="3" item="Mousepad " price="$11.99" productNumber="410812270" />
352
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=404356012&amp;i=35487326" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4405912.404356012/pNo_404356012/id_35487326" productTypeNumber="193" item="Greeting Cards (Pk of 20)" price="$33.99" productNumber="404356012" />
353
- </products>
354
- </searchResultItem>
355
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/11697392_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_11697392/hlv_1" mediaId="11697392">
356
- <products total="3">
357
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=51899147&amp;i=11697392" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1598521.51899147/pNo_51899147/id_11697392" productTypeNumber="11" item="Stein" price="$15.99" productNumber="51899147" />
358
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=51899146&amp;i=11697392" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1598521.51899146/pNo_51899146/id_11697392" productTypeNumber="0" item="Mug " price="$12.99" productNumber="51899146" />
359
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=51899145&amp;i=11697392" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1598521.51899145/pNo_51899145/id_11697392" productTypeNumber="1" item="Large Mug " price="$13.99" productNumber="51899145" />
360
- </products>
361
- </searchResultItem>
362
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/33157630_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_33157630/hlv_1" mediaId="33157630">
363
- <products total="1">
364
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=364368007&amp;i=33157630" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3693532.364368007/pNo_364368007/id_33157630" productTypeNumber="100" item="Journal" price="$14.49" productNumber="364368007" />
365
- </products>
366
- </searchResultItem>
367
- <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/33143756_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_33143756/hlv_1" mediaId="33143756">
368
- <products total="3">
369
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=363980759&amp;i=33143756" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3693532.363980759/pNo_363980759/id_33143756" productTypeNumber="147" item="Framed Tile" price="$13.49" productNumber="363980759" />
370
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=363980761&amp;i=33143756" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3693532.363980761/pNo_363980761/id_33143756" productTypeNumber="86" item="Keepsake Box" price="$24.99" productNumber="363980761" />
371
- <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=363980760&amp;i=33143756" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3693532.363980760/pNo_363980760/id_33143756" productTypeNumber="125" item="Throw Pillow" price="$20.99" productNumber="363980760" />
372
- </products>
373
- </searchResultItem>
374
- </mainResults>
375
- <searchQuery>
376
- <searchString>dog</searchString>
377
- </searchQuery>
378
- <subtopics>
379
- <subtopic>pets</subtopic>
380
- <subtopic>pet</subtopic>
381
- <subtopic>canine</subtopic>
382
- <subtopic>puppy</subtopic>
383
- <subtopic>gifts</subtopic>
384
- <subtopic>animals</subtopic>
385
- <subtopic>art</subtopic>
386
- <subtopic>breeds</subtopic>
387
- <subtopic>breed</subtopic>
388
- <subtopic>humor</subtopic>
389
- </subtopics>
390
- </searchResultSet>
1
+ <searchResultSet totalDesigns="519187" totalProducts="16153172" startResult="0" resultLength="60" version="3" sort="by_score_desc">
2
+ <mainResults>
3
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/13012560_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_13012560/hlv_1" mediaId="13012560">
4
+ <products total="3">
5
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=61897566&amp;i=13012560" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.61897566/pNo_61897566/id_13012560" productTypeNumber="137" item="Rectangle Magnet" price="$5.49" marketplacePrice="5.00" productNumber="61897566" caption="Kiss Dog Lips Rectangle Magnet" sellerDescription="I kiss my dog on the lips." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="Kiss Dog Lips" parentSectionUrl="http://www.cafepress.com/doghause/949957">
6
+ <colors />
7
+ <sizes />
8
+ </product>
9
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=346569424&amp;i=13012560" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.346569424/pNo_346569424/id_13012560" productTypeNumber="137" item="Rectangle Magnet" price="$5.49" marketplacePrice="5.00" productNumber="346569424" caption="Kiss Dog Lips Rectangle Magnet" sellerDescription="I kiss my dog on the lips." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="I Kiss My Dog On The Lips" parentSectionUrl="http://www.cafepress.com/doghause/6366981">
10
+
11
+ <colors />
12
+ <sizes />
13
+ </product>
14
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=346569434&amp;i=13012560" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.346569434/pNo_346569434/id_13012560" productTypeNumber="109" item="Women's Light T-Shirt" price="$23.99" marketplacePrice="22.00" productNumber="346569434" caption="Kiss Dog Lips Women&amp;apos;s Light T-Shirt" sellerDescription="I kiss my dog on the lips." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="I Kiss My Dog On The Lips" parentSectionUrl="http://www.cafepress.com/doghause/6366981">
15
+ <colors>
16
+ <color>Light Pink</color>
17
+ <color>Light Yellow</color>
18
+ <color>Light Blue</color>
19
+
20
+ </colors>
21
+ <sizes>
22
+ <size>Small</size>
23
+ <size>Medium</size>
24
+ <size>Large</size>
25
+ <size>X-Large</size>
26
+ <size>2X-Large (+$3.00)</size>
27
+
28
+ </sizes>
29
+ </product>
30
+ </products>
31
+ </searchResultItem>
32
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/34016862_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_34016862/hlv_1" mediaId="34016862">
33
+ <products total="3">
34
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=384814123&amp;i=34016862" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4102863.384814123/pNo_384814123/id_34016862" productTypeNumber="4" item="Sweatshirt" price="$32.99" marketplacePrice="30.00" productNumber="384814123" caption="My Dog is Cuter than Your Dog Sweatshirt" sellerDescription="" storeName="Nicholas Buccelli&amp;apos;s T-Shirt Tube" storeUrl="http://www.cafepress.com/TShirtTube" parentSectionName="Entourage - My Dog is Cuter than Your Dog" parentSectionUrl="http://www.cafepress.com/TShirtTube/6703939">
35
+ <colors>
36
+ <color>White</color>
37
+
38
+ <color>Ash Grey</color>
39
+ </colors>
40
+ <sizes>
41
+ <size>Small</size>
42
+ <size>Medium</size>
43
+ <size>Large</size>
44
+ <size>X-Large</size>
45
+
46
+ <size>2X-Large (+$3.00)</size>
47
+ </sizes>
48
+ </product>
49
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=384814095&amp;i=34016862" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4102863.384814095/pNo_384814095/id_34016862" productTypeNumber="17" item="Tote Bag" price="$15.99" marketplacePrice="17.00" productNumber="384814095" caption="My Dog is Cuter than Your Dog Tote Bag" sellerDescription="" storeName="Nicholas Buccelli&amp;apos;s T-Shirt Tube" storeUrl="http://www.cafepress.com/TShirtTube" parentSectionName="Entourage - My Dog is Cuter than Your Dog" parentSectionUrl="http://www.cafepress.com/TShirtTube/6703939">
50
+ <colors />
51
+ <sizes />
52
+ </product>
53
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=384814046&amp;i=34016862" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4102863.384814046/pNo_384814046/id_34016862" productTypeNumber="211" item="Sticker (Oval 10 pk)" price="$25.49" marketplacePrice="30.00" productNumber="384814046" caption="My Dog is Cuter than Your Dog Sticker (Oval 10 pk)" sellerDescription="" storeName="Nicholas Buccelli&amp;apos;s T-Shirt Tube" storeUrl="http://www.cafepress.com/TShirtTube" parentSectionName="Entourage - My Dog is Cuter than Your Dog" parentSectionUrl="http://www.cafepress.com/TShirtTube/6703939">
54
+
55
+ <colors />
56
+ <sizes />
57
+ </product>
58
+ </products>
59
+ </searchResultItem>
60
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/8628040_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_8628040/hlv_1" mediaId="8628040">
61
+ <products total="1">
62
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33212906&amp;i=8628040" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_925290.33212906/pNo_33212906/id_8628040" productTypeNumber="51" item="Sticker (Oval)" price="$4.89" marketplacePrice="4.00" productNumber="33212906" caption="Woof Euro Dog Sticker (Oval)" sellerDescription="The eurostyle sticker for dog lovers. Stick it on the back of your car. Woof makes the statement that you are a dog fan. Be proud of your doggie companion! Woof!" storeName="The ZapGraphix Shop!" storeUrl="http://www.cafepress.com/zapgraphix" parentSectionName="Dog Stickers: Oval/Euro Style" parentSectionUrl="http://www.cafepress.com/zapgraphix/882019">
63
+ <colors />
64
+
65
+ <sizes />
66
+ </product>
67
+ </products>
68
+ </searchResultItem>
69
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/8786932_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_8786932/hlv_1" mediaId="8786932">
70
+ <products total="3">
71
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=32053647&amp;i=8786932" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.32053647/pNo_32053647/id_8786932" productTypeNumber="109" item="Women's Light T-Shirt" price="$23.99" marketplacePrice="22.00" productNumber="32053647" caption="Dogs Leave Paw Prints Women&amp;apos;s Pink T-Shirt" sellerDescription="Dogs leave paw prints forever on your heart." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="Dogs Leave Paw Prints" parentSectionUrl="http://www.cafepress.com/doghause/854387">
72
+ <colors>
73
+ <color>Light Pink</color>
74
+
75
+ <color>Light Yellow</color>
76
+ <color>Light Blue</color>
77
+ </colors>
78
+ <sizes>
79
+ <size>Small</size>
80
+ <size>Medium</size>
81
+ <size>Large</size>
82
+
83
+ <size>X-Large</size>
84
+ <size>2X-Large (+$3.00)</size>
85
+ </sizes>
86
+ </product>
87
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=346569267&amp;i=8786932" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.346569267/pNo_346569267/id_8786932" productTypeNumber="109" item="Women's Light T-Shirt" price="$23.99" marketplacePrice="22.00" productNumber="346569267" caption="Dogs Leave Paw Prints Women&amp;apos;s Pink T-Shirt" sellerDescription="Dogs leave paw prints forever on your heart." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="Valentine&amp;apos;s Dogs Leave Paw Prints" parentSectionUrl="http://www.cafepress.com/doghause/6366978">
88
+ <colors>
89
+ <color>Light Pink</color>
90
+
91
+ <color>Light Yellow</color>
92
+ <color>Light Blue</color>
93
+ </colors>
94
+ <sizes>
95
+ <size>Small</size>
96
+ <size>Medium</size>
97
+ <size>Large</size>
98
+
99
+ <size>X-Large</size>
100
+ <size>2X-Large (+$3.00)</size>
101
+ </sizes>
102
+ </product>
103
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=32053639&amp;i=8786932" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.32053639/pNo_32053639/id_8786932" productTypeNumber="3" item="Mousepad " price="$15.99" marketplacePrice="13.00" productNumber="32053639" caption="Dogs Leave Paw Prints Mousepad" sellerDescription="Dogs leave paw prints forever on your heart." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="Dogs Leave Paw Prints" parentSectionUrl="http://www.cafepress.com/doghause/854387">
104
+ <colors />
105
+ <sizes />
106
+ </product>
107
+
108
+ </products>
109
+ </searchResultItem>
110
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/24193383_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_24193383/hlv_1" mediaId="24193383">
111
+ <products total="3">
112
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=197055660&amp;i=24193383" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.197055660/pNo_197055660/id_24193383" productTypeNumber="152" item="Dark T-Shirt" price="$25.99" marketplacePrice="24.00" productNumber="197055660" caption="Dogs Rock Dog Lover Breeder Owner Dark T-Shirt" sellerDescription="This Dogs Rock, t-shirt and gift for people that love dogs and puppies. For more Dog Breed inspired tee shirts and gifts visit our Dog Breed Shop" storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Dogs Rock Dog Lover Breeder Owner T-shirts Gifts" parentSectionUrl="http://www.cafepress.com/solopress/4223956">
113
+ <colors>
114
+ <color>Black</color>
115
+ <color>Cardinal</color>
116
+
117
+ <color>Navy</color>
118
+ <color>Military Green</color>
119
+ <color>Red</color>
120
+ <color>Royal</color>
121
+ <color>Brown</color>
122
+ <color>Charcoal</color>
123
+
124
+ <color>Kelly Green</color>
125
+ </colors>
126
+ <sizes>
127
+ <size>Small</size>
128
+ <size>Medium</size>
129
+ <size>Large</size>
130
+ <size>X-Large</size>
131
+
132
+ <size>2X-Large (+$3.00)</size>
133
+ <size>3X-Large (+$3.00)</size>
134
+ </sizes>
135
+ </product>
136
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=197055570&amp;i=24193383" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.197055570/pNo_197055570/id_24193383" productTypeNumber="161" item="Women's Dark T-Shirt" price="$26.99" marketplacePrice="24.00" productNumber="197055570" caption="Dogs Rock Dog Lover Breeder Owner Women&amp;apos;s Dark T-S" sellerDescription="This Dogs Rock, t-shirt and gift for people that love dogs and puppies. For more Dog Breed inspired tee shirts and gifts visit our Dog Breed Shop" storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Dogs Rock Dog Lover Breeder Owner T-shirts Gifts" parentSectionUrl="http://www.cafepress.com/solopress/4223956">
137
+ <colors>
138
+ <color>Black</color>
139
+
140
+ <color>Red</color>
141
+ <color>Caribbean Blue</color>
142
+ <color>Violet</color>
143
+ </colors>
144
+ <sizes>
145
+ <size>Small</size>
146
+ <size>Medium</size>
147
+
148
+ <size>Large</size>
149
+ <size>X-Large</size>
150
+ <size>2X-Large (+$3.00)</size>
151
+ </sizes>
152
+ </product>
153
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=197055602&amp;i=24193383" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.197055602/pNo_197055602/id_24193383" productTypeNumber="18" item="Messenger Bag" price="$25.99" marketplacePrice="25.00" productNumber="197055602" caption="Dogs Rock Dog Lover Breeder Owner Messenger Bag" sellerDescription="This Dogs Rock, t-shirt and gift for people that love dogs and puppies. For more Dog Breed inspired tee shirts and gifts visit our Dog Breed Shop" storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Dogs Rock Dog Lover Breeder Owner T-shirts Gifts" parentSectionUrl="http://www.cafepress.com/solopress/4223956">
154
+ <colors />
155
+
156
+ <sizes />
157
+ </product>
158
+ </products>
159
+ </searchResultItem>
160
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/12066414_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_12066414/hlv_1" mediaId="12066414">
161
+ <products total="3">
162
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=54648047&amp;i=12066414" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1216343.54648047/pNo_54648047/id_12066414" productTypeNumber="50" item="Sticker (Rectangle)" price="$5.99" marketplacePrice="4.00" productNumber="54648047" caption="Please Rescue Dogs Sticker (Rectangular)" sellerDescription="Protect your dogs with our &amp;quot;Save My Pet&amp;quot; emergency rescue stickers and magnets." storeName="1000 Goldens Dog Shop" storeUrl="http://www.cafepress.com/serendipity1" parentSectionName="Save My Pet" parentSectionUrl="http://www.cafepress.com/serendipity1/1365066">
163
+ <colors />
164
+ <sizes />
165
+
166
+ </product>
167
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=54648050&amp;i=12066414" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1216343.54648050/pNo_54648050/id_12066414" productTypeNumber="137" item="Rectangle Magnet" price="$6.49" marketplacePrice="5.00" productNumber="54648050" caption="Please Rescue Dogs Rectangle Magnet" sellerDescription="Protect your furry friends with our &amp;lt;i&amp;gt;Save My Pet&amp;lt;/i&amp;gt; emergency rescue stickers and magnets. The dog rescue magnets can be fastened to metal storm doors, and stickers to windows -- to quickly notify" storeName="1000 Goldens Dog Shop" storeUrl="http://www.cafepress.com/serendipity1" parentSectionName="Save My Pet" parentSectionUrl="http://www.cafepress.com/serendipity1/1365066">
168
+ <colors />
169
+ <sizes />
170
+ </product>
171
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=54648049&amp;i=12066414" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1216343.54648049/pNo_54648049/id_12066414" productTypeNumber="138" item="Rectangle Magnet (10 pack)" price="$29.99" marketplacePrice="40.00" productNumber="54648049" caption="Please Rescue Dogs Rectangle Magnet (10 pack)" sellerDescription="Protect your furry friends with our &amp;lt;i&amp;gt;Save My Pet&amp;lt;/i&amp;gt; emergency rescue stickers and magnets. The dog rescue magnets can be fastened to metal storm doors, and stickers to windows -- to quickly notify" storeName="1000 Goldens Dog Shop" storeUrl="http://www.cafepress.com/serendipity1" parentSectionName="Save My Pet" parentSectionUrl="http://www.cafepress.com/serendipity1/1365066">
172
+ <colors />
173
+ <sizes />
174
+ </product>
175
+
176
+ </products>
177
+ </searchResultItem>
178
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/13077034_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_13077034/hlv_1" mediaId="13077034">
179
+ <products total="3">
180
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=63188489&amp;i=13077034" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1153454.63188489/pNo_63188489/id_13077034" productTypeNumber="152" item="Dark T-Shirt" price="$22.99" marketplacePrice="24.00" productNumber="63188489" caption="Belgian Malinois Black T-Shirt" sellerDescription="" storeName="Gifts of Love" storeUrl="http://www.cafepress.com/giftsoflove" parentSectionName="Belgian Malinois" parentSectionUrl="http://www.cafepress.com/giftsoflove/1564122">
181
+ <colors>
182
+ <color>Black</color>
183
+ <color>Cardinal</color>
184
+
185
+ <color>Navy</color>
186
+ <color>Military Green</color>
187
+ <color>Red</color>
188
+ <color>Royal</color>
189
+ <color>Brown</color>
190
+ <color>Charcoal</color>
191
+
192
+ <color>Kelly Green</color>
193
+ </colors>
194
+ <sizes>
195
+ <size>Small</size>
196
+ <size>Medium</size>
197
+ <size>Large</size>
198
+ <size>X-Large</size>
199
+
200
+ <size>2X-Large (+$3.00)</size>
201
+ <size>3X-Large (+$3.00)</size>
202
+ </sizes>
203
+ </product>
204
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=314362959&amp;i=13077034" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1153454.314362959/pNo_314362959/id_13077034" productTypeNumber="164" item="Women's Long Sleeve Dark T-Shirt" price="$29.99" marketplacePrice="30.00" productNumber="314362959" caption="Belgian Malinois Women&amp;apos;s Long Sleeve Dark T-Shirt" sellerDescription="" storeName="Gifts of Love" storeUrl="http://www.cafepress.com/giftsoflove" parentSectionName="Belgian Malinois" parentSectionUrl="http://www.cafepress.com/giftsoflove/1564122">
205
+ <colors>
206
+ <color>Black</color>
207
+
208
+ <color>Brown</color>
209
+ </colors>
210
+ <sizes>
211
+ <size>Small</size>
212
+ <size>Medium</size>
213
+ <size>Large</size>
214
+ <size>X-Large</size>
215
+
216
+ <size>2X-Large (+$3.00)</size>
217
+ </sizes>
218
+ </product>
219
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=314362960&amp;i=13077034" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1153454.314362960/pNo_314362960/id_13077034" productTypeNumber="155" item="Long Sleeve Dark T-Shirt" price="$29.99" marketplacePrice="30.00" productNumber="314362960" caption="Belgian Malinois Long Sleeve Dark T-Shirt" sellerDescription="" storeName="Gifts of Love" storeUrl="http://www.cafepress.com/giftsoflove" parentSectionName="Belgian Malinois" parentSectionUrl="http://www.cafepress.com/giftsoflove/1564122">
220
+ <colors>
221
+ <color>Black</color>
222
+ <color>Navy</color>
223
+
224
+ </colors>
225
+ <sizes>
226
+ <size>Small</size>
227
+ <size>Medium</size>
228
+ <size>Large</size>
229
+ <size>X-Large</size>
230
+ <size>2X-Large (+$3.00)</size>
231
+
232
+ <size>3X-Large (+$3.00)</size>
233
+ <size>4X-Large (+$3.00)</size>
234
+ </sizes>
235
+ </product>
236
+ </products>
237
+ </searchResultItem>
238
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/21713488_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_21713488/hlv_1" mediaId="21713488">
239
+ <products total="3">
240
+
241
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163131781&amp;i=21713488" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340605.163131781/pNo_163131781/id_21713488" productTypeNumber="137" item="Rectangle Magnet" price="$6.49" marketplacePrice="5.00" productNumber="163131781" caption="My dog rides the short bus t- Rectangle Magnet" sellerDescription="My dog rides the short bus t-shirts." storeName="InkTees | Urban Culture | T-shirts and Gifts." storeUrl="http://www.cafepress.com/inktees" parentSectionName="My dog rides the short bus t-shirts. " parentSectionUrl="http://www.cafepress.com/inktees/3538171">
242
+ <colors />
243
+ <sizes />
244
+ </product>
245
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163131804&amp;i=21713488" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340605.163131804/pNo_163131804/id_21713488" productTypeNumber="51" item="Sticker (Oval)" price="$5.99" marketplacePrice="4.00" productNumber="163131804" caption="My dog rides the short bus t- Sticker (Oval)" sellerDescription="My dog rides the short bus t-shirts." storeName="InkTees | Urban Culture | T-shirts and Gifts." storeUrl="http://www.cafepress.com/inktees" parentSectionName="My dog rides the short bus t-shirts. " parentSectionUrl="http://www.cafepress.com/inktees/3538171">
246
+ <colors />
247
+ <sizes />
248
+ </product>
249
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163131783&amp;i=21713488" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1340605.163131783/pNo_163131783/id_21713488" productTypeNumber="119" item="Magnet" price="$5.99" marketplacePrice="4.00" productNumber="163131783" caption="My dog rides the short bus t- Magnet" sellerDescription="My dog rides the short bus t-shirts." storeName="InkTees | Urban Culture | T-shirts and Gifts." storeUrl="http://www.cafepress.com/inktees" parentSectionName="My dog rides the short bus t-shirts. " parentSectionUrl="http://www.cafepress.com/inktees/3538171">
250
+
251
+ <colors />
252
+ <sizes />
253
+ </product>
254
+ </products>
255
+ </searchResultItem>
256
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/31037930_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_31037930/hlv_1" mediaId="31037930">
257
+ <products total="1">
258
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=322686027&amp;i=31037930" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1093180.322686027/pNo_322686027/id_31037930" productTypeNumber="194" item="Note Cards (Pk of 10)" price="$13.99" marketplacePrice="15.00" productNumber="322686027" caption="Gordon Setter Holiday Thank You Note Cards (10 Pk)" sellerDescription="Say &amp;amp;quot;Thank You&amp;amp;quot; with one of these pet art note cards. Featuring a cheery winter Gordon and snowman cartoon, they&amp;apos;ll be a holiday hit with any Gordon Setter fan. Including you!" storeName="Karen Hocker Photography &amp;amp; Design Studio" storeUrl="http://www.cafepress.com/khpstore" parentSectionName="Gordon Setter Winter Holiday Cards" parentSectionUrl="http://www.cafepress.com/khpstore/6127227">
259
+ <colors />
260
+
261
+ <sizes />
262
+ </product>
263
+ </products>
264
+ </searchResultItem>
265
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/11197643_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_11197643/hlv_1" mediaId="11197643">
266
+ <products total="3">
267
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=48167756&amp;i=11197643" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1351443.48167756/pNo_48167756/id_11197643" productTypeNumber="90" item="Sticker (Bumper)" price="$4.99" marketplacePrice="5.00" productNumber="48167756" caption="Peace. Love. Dogs. Bumper Sticker" sellerDescription="Great bumper sticker for all dog lovers! Featuring a pretty peace symbol, a red heart, and then a blue pawprint. Peace, love, dogs. Cute gift idea! Also available in a t-shirt." storeName="Menagerie Mayhem" storeUrl="http://www.cafepress.com/menageriemayhem" parentSectionName="Dog Stickers" parentSectionUrl="http://www.cafepress.com/menageriemayhem/3081893">
268
+ <colors />
269
+ <sizes />
270
+
271
+ </product>
272
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=234295031&amp;i=11197643" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1351443.234295031/pNo_234295031/id_11197643" productTypeNumber="1" item="Large Mug " price="$15.99" marketplacePrice="18.00" productNumber="234295031" caption="Peace Love Dogs Large Mug" sellerDescription="This original apparel says it all.. A peace emblem, a red heart, and then a blue pawprint. Peace, Love, and Dogs. We can only dream! On a selection of clothing." storeName="Menagerie Mayhem" storeUrl="http://www.cafepress.com/menageriemayhem" parentSectionName="Peace, Love, Dogs" parentSectionUrl="http://www.cafepress.com/menageriemayhem/4951251">
273
+ <colors />
274
+ <sizes />
275
+ </product>
276
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=234295030&amp;i=11197643" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1351443.234295030/pNo_234295030/id_11197643" productTypeNumber="0" item="Mug " price="$14.99" marketplacePrice="15.00" productNumber="234295030" caption="Peace Love Dogs Mug" sellerDescription="This original apparel says it all.. A peace emblem, a red heart, and then a blue pawprint. Peace, Love, and Dogs. We can only dream! On a selection of clothing." storeName="Menagerie Mayhem" storeUrl="http://www.cafepress.com/menageriemayhem" parentSectionName="Peace, Love, Dogs" parentSectionUrl="http://www.cafepress.com/menageriemayhem/4951251">
277
+ <colors />
278
+ <sizes />
279
+ </product>
280
+
281
+ </products>
282
+ </searchResultItem>
283
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/9160400_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_9160400/hlv_1" mediaId="9160400">
284
+ <products total="1">
285
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=34898153&amp;i=9160400" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.34898153/pNo_34898153/id_9160400" productTypeNumber="90" item="Sticker (Bumper)" price="$6.49" marketplacePrice="5.00" productNumber="34898153" caption="Shelter Pets Need You Sticker (Bumper)" sellerDescription="Shelter pets need a home more than breeders or pet stores need your money. It&amp;apos;s so simple, yet so true. Help stop the homeless pet crisis. Too many dogs and cats are dying. Opt to adopt a shelter pet." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Shelter Pets Need You" parentSectionUrl="http://www.cafepress.com/4crazydogs/904047">
286
+ <colors />
287
+ <sizes />
288
+ </product>
289
+ </products>
290
+
291
+ </searchResultItem>
292
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/14080224_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_14080224/hlv_1" mediaId="14080224">
293
+ <products total="2">
294
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=70962954&amp;i=14080224" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_742046.70962954/pNo_70962954/id_14080224" productTypeNumber="51" item="Sticker (Oval)" price="$3.79" marketplacePrice="4.00" productNumber="70962954" caption="Woof Sticker (Oval)" sellerDescription="Woof Oval Sticker" storeName="Oval Stickers Plus" storeUrl="http://www.cafepress.com/ovalsticker" parentSectionName="General" parentSectionUrl="http://www.cafepress.com/ovalsticker/1743864">
295
+ <colors />
296
+ <sizes />
297
+ </product>
298
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=70961381&amp;i=14080224" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_742046.70961381/pNo_70961381/id_14080224" productTypeNumber="51" item="Sticker (Oval)" price="$3.79" marketplacePrice="4.00" productNumber="70961381" caption="Woof Sticker (Oval)" sellerDescription="Woof Oval Sticker" storeName="Oval Stickers Plus" storeUrl="http://www.cafepress.com/ovalsticker" parentSectionName="Miscellaneous" parentSectionUrl="http://www.cafepress.com/ovalsticker/2100524">
299
+ <colors />
300
+
301
+ <sizes />
302
+ </product>
303
+ </products>
304
+ </searchResultItem>
305
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/6688126_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_6688126/hlv_1" mediaId="6688126">
306
+ <products total="3">
307
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=19173293&amp;i=6688126" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_805040.19173293/pNo_19173293/id_6688126" productTypeNumber="51" item="Sticker (Oval)" price="$5.24" marketplacePrice="4.00" productNumber="19173293" caption="Adopt A Dog Sticker (Oval)" sellerDescription="Promote dog adoption and animal shelters! Wear while your walking your rescue dogs. perfect attire for working at or attending pet adoption events. Save a Life, Adopt A Shelter Dog!" storeName="US Pet Pros" storeUrl="http://www.cafepress.com/uspetpros" parentSectionName="Adopt A Dog" parentSectionUrl="http://www.cafepress.com/uspetpros/534834">
308
+ <colors />
309
+ <sizes />
310
+
311
+ </product>
312
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=19173279&amp;i=6688126" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_805040.19173279/pNo_19173279/id_6688126" productTypeNumber="23" item="Hooded Sweatshirt" price="$40.99" marketplacePrice="35.00" productNumber="19173279" caption="Adopt A Dog Hooded Sweatshirt" sellerDescription="Promote dog adoption and animal shelters! Wear while your walking your rescue dogs. perfect attire for working at or attending pet adoption events. Save a Life, Adopt A Shelter Dog!" storeName="US Pet Pros" storeUrl="http://www.cafepress.com/uspetpros" parentSectionName="Adopt A Dog" parentSectionUrl="http://www.cafepress.com/uspetpros/534834">
313
+ <colors>
314
+ <color>White</color>
315
+ <color>Heather Grey</color>
316
+ </colors>
317
+ <sizes>
318
+ <size>Small</size>
319
+
320
+ <size>Medium</size>
321
+ <size>Large</size>
322
+ <size>X-Large</size>
323
+ <size>2X-Large (+$3.00)</size>
324
+ </sizes>
325
+ </product>
326
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=19173299&amp;i=6688126" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_805040.19173299/pNo_19173299/id_6688126" productTypeNumber="109" item="Women's Light T-Shirt" price="$20.99" marketplacePrice="22.00" productNumber="19173299" caption="Adopt A Dog Women&amp;apos;s Pink T-Shirt" sellerDescription="Promote dog adoption and animal shelters! Wear while your walking your rescue dogs. perfect attire for working at or attending pet adoption events. Save a Life, Adopt A Shelter Dog!" storeName="US Pet Pros" storeUrl="http://www.cafepress.com/uspetpros" parentSectionName="Adopt A Dog" parentSectionUrl="http://www.cafepress.com/uspetpros/534834">
327
+
328
+ <colors>
329
+ <color>Light Pink</color>
330
+ <color>Light Yellow</color>
331
+ <color>Light Blue</color>
332
+ </colors>
333
+ <sizes>
334
+ <size>Small</size>
335
+
336
+ <size>Medium</size>
337
+ <size>Large</size>
338
+ <size>X-Large</size>
339
+ <size>2X-Large (+$3.00)</size>
340
+ </sizes>
341
+ </product>
342
+ </products>
343
+
344
+ </searchResultItem>
345
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/2566749_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_2566749/hlv_1" mediaId="2566749">
346
+ <products total="3">
347
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=6412056&amp;i=2566749" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_550339.6412056/pNo_6412056/id_2566749" productTypeNumber="17" item="Tote Bag" price="$19.99" marketplacePrice="17.00" productNumber="6412056" caption="Dog Therapy" sellerDescription="" storeName="Glasbergen Cartoon Gift Shop" storeUrl="http://www.cafepress.com/glasbergen" parentSectionName="Dog Therapy" parentSectionUrl="http://www.cafepress.com/glasbergen/117365">
348
+ <colors />
349
+ <sizes />
350
+ </product>
351
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=6412054&amp;i=2566749" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_550339.6412054/pNo_6412054/id_2566749" productTypeNumber="77" item="Postcards (Package of 8)" price="$8.99" marketplacePrice="8.00" productNumber="6412054" caption="Dog Therapy Postcards (Package of 8)" sellerDescription="" storeName="Glasbergen Cartoon Gift Shop" storeUrl="http://www.cafepress.com/glasbergen" parentSectionName="Dog Therapy" parentSectionUrl="http://www.cafepress.com/glasbergen/117365">
352
+ <colors />
353
+
354
+ <sizes />
355
+ </product>
356
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=6412051&amp;i=2566749" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_550339.6412051/pNo_6412051/id_2566749" productTypeNumber="2" item="White T-Shirt " price="$19.99" marketplacePrice="22.00" productNumber="6412051" caption="Dog Therapy" sellerDescription="" storeName="Glasbergen Cartoon Gift Shop" storeUrl="http://www.cafepress.com/glasbergen" parentSectionName="Dog Therapy" parentSectionUrl="http://www.cafepress.com/glasbergen/117365">
357
+ <colors />
358
+ <sizes>
359
+ <size>Small</size>
360
+ <size>Medium</size>
361
+ <size>Large</size>
362
+
363
+ <size>X-Large</size>
364
+ <size>2X-Large (+$3.00)</size>
365
+ <size>3X-Large (+$3.00)</size>
366
+ <size>4X-Large (+$3.00)</size>
367
+ </sizes>
368
+ </product>
369
+ </products>
370
+
371
+ </searchResultItem>
372
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/6898275_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_6898275/hlv_1" mediaId="6898275">
373
+ <products total="3">
374
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=20359288&amp;i=6898275" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_837488.20359288/pNo_20359288/id_6898275" productTypeNumber="2" item="White T-Shirt " price="$22.99" marketplacePrice="22.00" productNumber="20359288" caption="Spoiled Dog White T-Shirt" sellerDescription="&amp;quot;My dog isn&amp;apos;t spoiled . . . I&amp;apos;m just well trained!&amp;quot; And what&amp;apos;s wrong with a spoiled dog? More designs available at www.bysandra.com" storeName="by Sandra" storeUrl="http://www.cafepress.com/bysandra" parentSectionName="Spoiled Dog" parentSectionUrl="http://www.cafepress.com/bysandra/564433">
375
+ <colors />
376
+ <sizes>
377
+ <size>Small</size>
378
+ <size>Medium</size>
379
+
380
+ <size>Large</size>
381
+ <size>X-Large</size>
382
+ <size>2X-Large (+$3.00)</size>
383
+ <size>3X-Large (+$3.00)</size>
384
+ <size>4X-Large (+$3.00)</size>
385
+ </sizes>
386
+
387
+ </product>
388
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=20359347&amp;i=6898275" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_837488.20359347/pNo_20359347/id_6898275" productTypeNumber="4" item="Sweatshirt" price="$40.99" marketplacePrice="30.00" productNumber="20359347" caption="Spoiled Dog Sweatshirt" sellerDescription="&amp;quot;My dog isn&amp;apos;t spoiled . . . I&amp;apos;m just well trained!&amp;quot; And what&amp;apos;s wrong with a spoiled dog? More designs available at www.bysandra.com" storeName="by Sandra" storeUrl="http://www.cafepress.com/bysandra" parentSectionName="Spoiled Dog" parentSectionUrl="http://www.cafepress.com/bysandra/564433">
389
+ <colors>
390
+ <color>White</color>
391
+ <color>Ash Grey</color>
392
+ </colors>
393
+ <sizes>
394
+ <size>Small</size>
395
+
396
+ <size>Medium</size>
397
+ <size>Large</size>
398
+ <size>X-Large</size>
399
+ <size>2X-Large (+$3.00)</size>
400
+ </sizes>
401
+ </product>
402
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=20359284&amp;i=6898275" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_837488.20359284/pNo_20359284/id_6898275" productTypeNumber="7" item="Light T-Shirt" price="$23.49" marketplacePrice="22.00" productNumber="20359284" caption="Spoiled Dog Ash Grey T-Shirt" sellerDescription="&amp;quot;My dog isn&amp;apos;t spoiled . . . I&amp;apos;m just well trained!&amp;quot; And what&amp;apos;s wrong with a spoiled dog? More designs available at www.bysandra.com" storeName="by Sandra" storeUrl="http://www.cafepress.com/bysandra" parentSectionName="Spoiled Dog" parentSectionUrl="http://www.cafepress.com/bysandra/564433">
403
+
404
+ <colors>
405
+ <color>Ash Grey</color>
406
+ <color>Natural</color>
407
+ <color>Light Blue</color>
408
+ </colors>
409
+ <sizes>
410
+ <size>Small</size>
411
+
412
+ <size>Medium</size>
413
+ <size>Large</size>
414
+ <size>X-Large</size>
415
+ <size>2X-Large (+$3.00)</size>
416
+ <size>3X-Large (+$3.00)</size>
417
+ </sizes>
418
+
419
+ </product>
420
+ </products>
421
+ </searchResultItem>
422
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/7891124_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_7891124/hlv_1" mediaId="7891124">
423
+ <products total="1">
424
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=25841000&amp;i=7891124" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1235620.25841000/pNo_25841000/id_7891124" productTypeNumber="90" item="Sticker (Bumper)" price="$4.38" marketplacePrice="5.00" productNumber="25841000" caption="Be the person... Sticker (Bumper)" sellerDescription="" storeName="FUZZYFACE CANINE COOKIE CORP www.fuzzyface.ca" storeUrl="http://www.cafepress.com/fuzzyfacek9" parentSectionName="Be the person your dog thinks you are" parentSectionUrl="http://www.cafepress.com/fuzzyfacek9/703867">
425
+ <colors />
426
+ <sizes />
427
+ </product>
428
+
429
+ </products>
430
+ </searchResultItem>
431
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/7317801_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_7317801/hlv_1" mediaId="7317801">
432
+ <products total="2">
433
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=22351648&amp;i=7317801" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1168845.22351648/pNo_22351648/id_7317801" productTypeNumber="90" item="Sticker (Bumper)" price="$4.49" marketplacePrice="5.00" productNumber="22351648" caption="My dog is smarter than our president (bmpr stkr)" sellerDescription="My dog IS smarter than the President. I think my gerbil would be smarter than the President. George W. Bush... world class clown." storeName="Fight the Right" storeUrl="http://www.cafepress.com/fight_the_right" parentSectionName="My dog is smart!" parentSectionUrl="http://www.cafepress.com/fight_the_right/2181522">
434
+ <colors />
435
+ <sizes />
436
+ </product>
437
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=22250848&amp;i=7317801" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1168845.22250848/pNo_22250848/id_7317801" productTypeNumber="90" item="Sticker (Bumper)" price="$4.49" marketplacePrice="5.00" productNumber="22250848" caption="My dog is smarter than our president (bmpr stkr)" sellerDescription="My dog IS smarter than the president. I think my gerbil would be smarter than Bush if I had one." storeName="Fight the Right" storeUrl="http://www.cafepress.com/fight_the_right" parentSectionName="" parentSectionUrl="http://www.cafepress.com/fight_the_right">
438
+
439
+ <colors />
440
+ <sizes />
441
+ </product>
442
+ </products>
443
+ </searchResultItem>
444
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/29948287_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_29948287/hlv_1" mediaId="29948287">
445
+ <products total="3">
446
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163840398&amp;i=29948287" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1803524.163840398/pNo_163840398/id_29948287" productTypeNumber="155" item="Long Sleeve Dark T-Shirt" price="$29.99" marketplacePrice="30.00" productNumber="163840398" caption="Black Lab Long Sleeve Dark T-Shirt" sellerDescription="If you love the Black Lab, you&amp;apos;ll love this bold pop style artwork. Created for the ultimate Black Lab lover." storeName="Magnes Gallery" storeUrl="http://www.cafepress.com/magnesgallery" parentSectionName="Black Lab" parentSectionUrl="http://www.cafepress.com/magnesgallery/3550581">
447
+ <colors>
448
+
449
+ <color>Black</color>
450
+ <color>Navy</color>
451
+ </colors>
452
+ <sizes>
453
+ <size>Small</size>
454
+ <size>Medium</size>
455
+ <size>Large</size>
456
+
457
+ <size>X-Large</size>
458
+ <size>2X-Large (+$3.00)</size>
459
+ <size>3X-Large (+$3.00)</size>
460
+ <size>4X-Large (+$3.00)</size>
461
+ </sizes>
462
+ </product>
463
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163840372&amp;i=29948287" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1803524.163840372/pNo_163840372/id_29948287" productTypeNumber="1" item="Large Mug " price="$17.99" marketplacePrice="18.00" productNumber="163840372" caption="Black Lab Large Mug" sellerDescription="If you love the Black Lab, you&amp;apos;ll love this bold pop style artwork. Created for the ultimate Black Lab lover." storeName="Magnes Gallery" storeUrl="http://www.cafepress.com/magnesgallery" parentSectionName="Black Lab" parentSectionUrl="http://www.cafepress.com/magnesgallery/3550581">
464
+
465
+ <colors />
466
+ <sizes />
467
+ </product>
468
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=163840369&amp;i=29948287" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1803524.163840369/pNo_163840369/id_29948287" productTypeNumber="192" item="Greeting Card" price="$5.99" marketplacePrice="3.50" productNumber="163840369" caption="Black Lab Greeting Card" sellerDescription="If you love the Black Lab, you&amp;apos;ll love this bold pop style artwork. Created for the ultimate Black Lab lover." storeName="Magnes Gallery" storeUrl="http://www.cafepress.com/magnesgallery" parentSectionName="Black Lab" parentSectionUrl="http://www.cafepress.com/magnesgallery/3550581">
469
+ <colors />
470
+ <sizes />
471
+ </product>
472
+ </products>
473
+ </searchResultItem>
474
+
475
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/23114709_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_23114709/hlv_1" mediaId="23114709">
476
+ <products total="3">
477
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=181416684&amp;i=23114709" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2153903.181416684/pNo_181416684/id_23114709" productTypeNumber="161" item="Women's Dark T-Shirt" price="$22.39" marketplacePrice="24.00" productNumber="181416684" caption="Kids - 4 Feet Women&amp;apos;s Dark T-Shirt" sellerDescription="" storeName="Hot Button Graffix - Push Your Hot Button" storeUrl="http://www.cafepress.com/thehotbutton" parentSectionName="Kids - 4 Feet" parentSectionUrl="http://www.cafepress.com/thehotbutton/3906941">
478
+ <colors>
479
+ <color>Black</color>
480
+ <color>Red</color>
481
+ <color>Caribbean Blue</color>
482
+
483
+ <color>Violet</color>
484
+ </colors>
485
+ <sizes>
486
+ <size>Small</size>
487
+ <size>Medium</size>
488
+ <size>Large</size>
489
+ <size>X-Large</size>
490
+
491
+ <size>2X-Large (+$3.00)</size>
492
+ </sizes>
493
+ </product>
494
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=181416685&amp;i=23114709" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2153903.181416685/pNo_181416685/id_23114709" productTypeNumber="161" item="Women's Dark T-Shirt" price="$22.39" marketplacePrice="24.00" productNumber="181416685" caption="Kids - 4 Feet Women&amp;apos;s Dark T-Shirt" sellerDescription="" storeName="Hot Button Graffix - Push Your Hot Button" storeUrl="http://www.cafepress.com/thehotbutton" parentSectionName="Kids - 4 Feet" parentSectionUrl="http://www.cafepress.com/thehotbutton/3906941">
495
+ <colors>
496
+ <color>Black</color>
497
+ <color>Red</color>
498
+
499
+ <color>Caribbean Blue</color>
500
+ <color>Violet</color>
501
+ </colors>
502
+ <sizes>
503
+ <size>Small</size>
504
+ <size>Medium</size>
505
+ <size>Large</size>
506
+
507
+ <size>X-Large</size>
508
+ <size>2X-Large (+$3.00)</size>
509
+ </sizes>
510
+ </product>
511
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=181416686&amp;i=23114709" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2153903.181416686/pNo_181416686/id_23114709" productTypeNumber="152" item="Dark T-Shirt" price="$21.29" marketplacePrice="24.00" productNumber="181416686" caption="Kids - 4 Feet Dark T-Shirt" sellerDescription="" storeName="Hot Button Graffix - Push Your Hot Button" storeUrl="http://www.cafepress.com/thehotbutton" parentSectionName="Kids - 4 Feet" parentSectionUrl="http://www.cafepress.com/thehotbutton/3906941">
512
+ <colors>
513
+ <color>Black</color>
514
+
515
+ <color>Cardinal</color>
516
+ <color>Navy</color>
517
+ <color>Military Green</color>
518
+ <color>Red</color>
519
+ <color>Royal</color>
520
+ <color>Brown</color>
521
+
522
+ <color>Charcoal</color>
523
+ <color>Kelly Green</color>
524
+ </colors>
525
+ <sizes>
526
+ <size>Small</size>
527
+ <size>Medium</size>
528
+ <size>Large</size>
529
+
530
+ <size>X-Large</size>
531
+ <size>2X-Large (+$3.00)</size>
532
+ <size>3X-Large (+$3.00)</size>
533
+ </sizes>
534
+ </product>
535
+ </products>
536
+ </searchResultItem>
537
+
538
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/14990948_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_14990948/hlv_1" mediaId="14990948">
539
+ <products total="3">
540
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=380489673&amp;i=14990948" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1895835.380489673/pNo_380489673/id_14990948" productTypeNumber="254" item="Organic Women's Fitted T-Shirt" price="$20.99" marketplacePrice="26.00" productNumber="380489673" caption="Organic Women&amp;apos;s Fitted T-Shirt" sellerDescription="" storeName="A Pet Is a Promise" storeUrl="http://www.cafepress.com/apetisapromise" parentSectionName="" parentSectionUrl="http://www.cafepress.com/apetisapromise">
541
+ <colors>
542
+ <color>Natural</color>
543
+ </colors>
544
+ <sizes>
545
+ <size>Small</size>
546
+
547
+ <size>Medium</size>
548
+ <size>Large</size>
549
+ <size>X-Large</size>
550
+ </sizes>
551
+ </product>
552
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=99317861&amp;i=14990948" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1895835.99317861/pNo_99317861/id_14990948" productTypeNumber="109" item="Women's Light T-Shirt" price="$15.99" marketplacePrice="22.00" productNumber="99317861" caption=" Women&amp;apos;s Pink T-Shirt" sellerDescription="Pets deserve health care too - spread the word!" storeName="A Pet Is a Promise" storeUrl="http://www.cafepress.com/apetisapromise" parentSectionName="" parentSectionUrl="http://www.cafepress.com/apetisapromise">
553
+ <colors>
554
+
555
+ <color>Light Pink</color>
556
+ <color>Light Yellow</color>
557
+ <color>Light Blue</color>
558
+ </colors>
559
+ <sizes>
560
+ <size>Small</size>
561
+ <size>Medium</size>
562
+
563
+ <size>Large</size>
564
+ <size>X-Large</size>
565
+ <size>2X-Large (+$3.00)</size>
566
+ </sizes>
567
+ </product>
568
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=99317856&amp;i=14990948" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1895835.99317856/pNo_99317856/id_14990948" productTypeNumber="7" item="Light T-Shirt" price="$15.99" marketplacePrice="22.00" productNumber="99317856" caption=" Ash Grey T-Shirt" sellerDescription="Pets deserve health care too - spread the word!" storeName="A Pet Is a Promise" storeUrl="http://www.cafepress.com/apetisapromise" parentSectionName="" parentSectionUrl="http://www.cafepress.com/apetisapromise">
569
+ <colors>
570
+
571
+ <color>Ash Grey</color>
572
+ <color>Natural</color>
573
+ <color>Light Blue</color>
574
+ </colors>
575
+ <sizes>
576
+ <size>Small</size>
577
+ <size>Medium</size>
578
+
579
+ <size>Large</size>
580
+ <size>X-Large</size>
581
+ <size>2X-Large (+$3.00)</size>
582
+ <size>3X-Large (+$3.00)</size>
583
+ </sizes>
584
+ </product>
585
+ </products>
586
+
587
+ </searchResultItem>
588
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/5590848_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_5590848/hlv_1" mediaId="5590848">
589
+ <products total="3">
590
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=14984000&amp;i=5590848" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.14984000/pNo_14984000/id_5590848" productTypeNumber="4" item="Sweatshirt" price="$36.99" marketplacePrice="30.00" productNumber="14984000" caption="Cage #275 Sweatshirt" sellerDescription="The prayer of Cage 275, a shelter dog once known as Jake. &amp;quot;Dear God, Please find me a home today...&amp;quot; Put a voice to those shelter dogs and turn some of the hardest hearts with this emotional message." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Prayer of Cage #275" parentSectionUrl="http://www.cafepress.com/4crazydogs/437615">
591
+ <colors>
592
+ <color>White</color>
593
+ <color>Ash Grey</color>
594
+ </colors>
595
+
596
+ <sizes>
597
+ <size>Small</size>
598
+ <size>Medium</size>
599
+ <size>Large</size>
600
+ <size>X-Large</size>
601
+ <size>2X-Large (+$3.00)</size>
602
+
603
+ </sizes>
604
+ </product>
605
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=14983988&amp;i=5590848" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.14983988/pNo_14983988/id_5590848" productTypeNumber="107" item="Yellow T-Shirt" price="$20.99" marketplacePrice="22.00" productNumber="14983988" caption="Cage #275 Yellow T-Shirt" sellerDescription="The prayer of Cage 275, a shelter dog once known as Jake. &amp;quot;Dear God, Please find me a home today...&amp;quot; Put a voice to those shelter dogs and turn some of the hardest hearts with this emotional message." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Prayer of Cage #275" parentSectionUrl="http://www.cafepress.com/4crazydogs/437615">
606
+ <colors />
607
+ <sizes>
608
+ <size>Small</size>
609
+ <size>Medium</size>
610
+ <size>Large</size>
611
+
612
+ <size>X-Large</size>
613
+ <size>2X-Large (+$3.00)</size>
614
+ </sizes>
615
+ </product>
616
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=14983990&amp;i=5590848" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.14983990/pNo_14983990/id_5590848" productTypeNumber="109" item="Women's Light T-Shirt" price="$20.99" marketplacePrice="22.00" productNumber="14983990" caption="Cage #275 Women&amp;apos;s Pink T-Shirt" sellerDescription="The prayer of Cage 275, a shelter dog once known as Jake. &amp;quot;Dear God, Please find me a home today...&amp;quot; Put a voice to those shelter dogs and turn some of the hardest hearts with this emotional message." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Prayer of Cage #275" parentSectionUrl="http://www.cafepress.com/4crazydogs/437615">
617
+ <colors>
618
+ <color>Light Pink</color>
619
+
620
+ <color>Light Yellow</color>
621
+ <color>Light Blue</color>
622
+ </colors>
623
+ <sizes>
624
+ <size>Small</size>
625
+ <size>Medium</size>
626
+ <size>Large</size>
627
+
628
+ <size>X-Large</size>
629
+ <size>2X-Large (+$3.00)</size>
630
+ </sizes>
631
+ </product>
632
+ </products>
633
+ </searchResultItem>
634
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36431325_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36431325/hlv_1" mediaId="36431325">
635
+ <products total="3">
636
+
637
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309078&amp;i=36431325" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309078/pNo_417309078/id_36431325" productTypeNumber="152" item="Dark T-Shirt" price="$22.99" marketplacePrice="24.00" productNumber="417309078" caption="Fun until cone... Dark T-Shirt" sellerDescription="" storeName="Second Chance Greyhounds on CafePress: Atlanta, GA" storeUrl="http://www.cafepress.com/2CG" parentSectionName="Fun until..." parentSectionUrl="http://www.cafepress.com/2CG/6965141">
638
+ <colors>
639
+ <color>Black</color>
640
+ <color>Cardinal</color>
641
+ <color>Navy</color>
642
+ <color>Military Green</color>
643
+ <color>Red</color>
644
+
645
+ <color>Royal</color>
646
+ <color>Brown</color>
647
+ <color>Charcoal</color>
648
+ <color>Kelly Green</color>
649
+ </colors>
650
+ <sizes>
651
+ <size>Small</size>
652
+
653
+ <size>Medium</size>
654
+ <size>Large</size>
655
+ <size>X-Large</size>
656
+ <size>2X-Large (+$3.00)</size>
657
+ <size>3X-Large (+$3.00)</size>
658
+ </sizes>
659
+
660
+ </product>
661
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309073&amp;i=36431325" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309073/pNo_417309073/id_36431325" productTypeNumber="263" item="Women's Fitted T-Shirt (dark)" price="$25.99" marketplacePrice="28.00" productNumber="417309073" caption="Fun until cone... Women&amp;apos;s Fitted T-Shirt" sellerDescription="" storeName="Second Chance Greyhounds on CafePress: Atlanta, GA" storeUrl="http://www.cafepress.com/2CG" parentSectionName="Fun until..." parentSectionUrl="http://www.cafepress.com/2CG/6965141">
662
+ <colors>
663
+ <color>Kelly Green</color>
664
+ <color>Black</color>
665
+ </colors>
666
+ <sizes>
667
+ <size>Small</size>
668
+
669
+ <size>Medium</size>
670
+ <size>Large</size>
671
+ <size>X-Large</size>
672
+ </sizes>
673
+ </product>
674
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309065&amp;i=36431325" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309065/pNo_417309065/id_36431325" productTypeNumber="164" item="Women's Long Sleeve Dark T-Shirt" price="$27.99" marketplacePrice="30.00" productNumber="417309065" caption="Fun until cone... Women&amp;apos;s Long Sleeve Dark T-Shirt" sellerDescription="" storeName="Second Chance Greyhounds on CafePress: Atlanta, GA" storeUrl="http://www.cafepress.com/2CG" parentSectionName="Fun until..." parentSectionUrl="http://www.cafepress.com/2CG/6965141">
675
+ <colors>
676
+
677
+ <color>Black</color>
678
+ <color>Brown</color>
679
+ </colors>
680
+ <sizes>
681
+ <size>Small</size>
682
+ <size>Medium</size>
683
+ <size>Large</size>
684
+
685
+ <size>X-Large</size>
686
+ <size>2X-Large (+$3.00)</size>
687
+ </sizes>
688
+ </product>
689
+ </products>
690
+ </searchResultItem>
691
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/31306672_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_31306672/hlv_1" mediaId="31306672">
692
+ <products total="1">
693
+
694
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=329391331&amp;i=31306672" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3724113.329391331/pNo_329391331/id_31306672" productTypeNumber="49" item="Wall Clock" price="$16.99" marketplacePrice="18.00" productNumber="329391331" caption="Play Time Wall Clock" sellerDescription="Hey it&amp;apos;s play time! Dogs love to play with their people, so get out and play." storeName="Doggy Play Time" storeUrl="http://www.cafepress.com/dogplaytime" parentSectionName="" parentSectionUrl="http://www.cafepress.com/dogplaytime">
695
+ <colors />
696
+ <sizes />
697
+ </product>
698
+ </products>
699
+ </searchResultItem>
700
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/15507520_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_15507520/hlv_1" mediaId="15507520">
701
+ <products total="3">
702
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=84824677&amp;i=15507520" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2038949.84824677/pNo_84824677/id_15507520" productTypeNumber="137" item="Rectangle Magnet" price="$4.09" marketplacePrice="5.00" productNumber="84824677" caption="Grand Dog Rectangle Magnet" sellerDescription="" storeName="The Haven Friends for Life" storeUrl="http://www.cafepress.com/thehavennc" parentSectionName="Grand Dog" parentSectionUrl="http://www.cafepress.com/thehavennc/2055270">
703
+
704
+ <colors />
705
+ <sizes />
706
+ </product>
707
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=84824643&amp;i=15507520" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2038949.84824643/pNo_84824643/id_15507520" productTypeNumber="103" item="Jr. Hoodie" price="$31.19" marketplacePrice="30.00" productNumber="84824643" caption="Grand Dog Jr. Hoodie" sellerDescription="" storeName="The Haven Friends for Life" storeUrl="http://www.cafepress.com/thehavennc" parentSectionName="Grand Dog" parentSectionUrl="http://www.cafepress.com/thehavennc/2055270">
708
+ <colors />
709
+ <sizes>
710
+ <size>Small</size>
711
+ <size>Medium</size>
712
+
713
+ <size>Large</size>
714
+ <size>X-Large</size>
715
+ </sizes>
716
+ </product>
717
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=84824685&amp;i=15507520" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2038949.84824685/pNo_84824685/id_15507520" productTypeNumber="51" item="Sticker (Oval)" price="$3.59" marketplacePrice="4.00" productNumber="84824685" caption="Grand Dog Sticker (Oval)" sellerDescription="" storeName="The Haven Friends for Life" storeUrl="http://www.cafepress.com/thehavennc" parentSectionName="Grand Dog" parentSectionUrl="http://www.cafepress.com/thehavennc/2055270">
718
+ <colors />
719
+ <sizes />
720
+ </product>
721
+
722
+ </products>
723
+ </searchResultItem>
724
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/26226350_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_26226350/hlv_1" mediaId="26226350">
725
+ <products total="3">
726
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=232130100&amp;i=26226350" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3034575.232130100/pNo_232130100/id_26226350" productTypeNumber="165" item="Women's Long Sleeve T-Shirt" price="$23.99" marketplacePrice="28.00" productNumber="232130100" caption="&amp;quot;Hardcore Dog Lover&amp;quot; Women&amp;apos;s Long Sleeve T-Shirt" sellerDescription="" storeName="The Dog Lover&amp;apos;s Store!" storeUrl="http://www.cafepress.com/dogloversstore" parentSectionName="" parentSectionUrl="http://www.cafepress.com/dogloversstore">
727
+ <colors />
728
+ <sizes>
729
+ <size>Small</size>
730
+
731
+ <size>Medium</size>
732
+ <size>Large</size>
733
+ <size>X-Large</size>
734
+ <size>2X-Large (+$3.00)</size>
735
+ </sizes>
736
+ </product>
737
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=232105949&amp;i=26226350" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3034575.232105949/pNo_232105949/id_26226350" productTypeNumber="166" item="Women's V-Neck T-Shirt" price="$20.99" marketplacePrice="22.00" productNumber="232105949" caption="&amp;quot;Hardcore Dog Lover&amp;quot; with Pawprints Women&amp;apos;s V-Neck" sellerDescription="" storeName="The Dog Lover&amp;apos;s Store!" storeUrl="http://www.cafepress.com/dogloversstore" parentSectionName="" parentSectionUrl="http://www.cafepress.com/dogloversstore">
738
+
739
+ <colors />
740
+ <sizes>
741
+ <size>Small</size>
742
+ <size>Medium</size>
743
+ <size>Large</size>
744
+ <size>X-Large</size>
745
+ </sizes>
746
+
747
+ </product>
748
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=232105950&amp;i=26226350" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3034575.232105950/pNo_232105950/id_26226350" productTypeNumber="114" item="Women's Tank Top" price="$19.99" marketplacePrice="20.00" productNumber="232105950" caption="&amp;quot;Hardcore Dog Lover&amp;quot; with Pawprints Women&amp;apos;s Tank T" sellerDescription="" storeName="The Dog Lover&amp;apos;s Store!" storeUrl="http://www.cafepress.com/dogloversstore" parentSectionName="" parentSectionUrl="http://www.cafepress.com/dogloversstore">
749
+ <colors />
750
+ <sizes>
751
+ <size>Small</size>
752
+ <size>Medium</size>
753
+ <size>Large</size>
754
+
755
+ <size>X-Large</size>
756
+ <size>2X-Large (+$3.00)</size>
757
+ </sizes>
758
+ </product>
759
+ </products>
760
+ </searchResultItem>
761
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/12699019_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_12699019/hlv_1" mediaId="12699019">
762
+ <products total="3">
763
+
764
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=59125251&amp;i=12699019" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1013834.59125251/pNo_59125251/id_12699019" productTypeNumber="1" item="Large Mug " price="$14.99" marketplacePrice="18.00" productNumber="59125251" caption="Best Dog Dad Large Mug" sellerDescription="Best Dog Dad - Gifts for the best dad a dog could have. Happy Father&amp;apos;s Day" storeName="CatnDog Shop - Popular Designs in One Store" storeUrl="http://www.cafepress.com/catndog" parentSectionName="Best Dog Dad" parentSectionUrl="http://www.cafepress.com/catndog/1466075">
765
+ <colors />
766
+ <sizes />
767
+ </product>
768
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=59125249&amp;i=12699019" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1013834.59125249/pNo_59125249/id_12699019" productTypeNumber="11" item="Stein" price="$16.99" marketplacePrice="20.00" productNumber="59125249" caption="Best Dog Dad Stein" sellerDescription="Best Dog Dad - Gifts for the best dad a dog could have. Happy Father&amp;apos;s Day" storeName="CatnDog Shop - Popular Designs in One Store" storeUrl="http://www.cafepress.com/catndog" parentSectionName="Best Dog Dad" parentSectionUrl="http://www.cafepress.com/catndog/1466075">
769
+ <colors />
770
+ <sizes />
771
+ </product>
772
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=59125250&amp;i=12699019" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1013834.59125250/pNo_59125250/id_12699019" productTypeNumber="0" item="Mug " price="$11.99" marketplacePrice="15.00" productNumber="59125250" caption="Best Dog Dad Mug" sellerDescription="Best Dog Dad - Gifts for the best dad a dog could have. Happy Father&amp;apos;s Day" storeName="CatnDog Shop - Popular Designs in One Store" storeUrl="http://www.cafepress.com/catndog" parentSectionName="Best Dog Dad" parentSectionUrl="http://www.cafepress.com/catndog/1466075">
773
+
774
+ <colors />
775
+ <sizes />
776
+ </product>
777
+ </products>
778
+ </searchResultItem>
779
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/17068935_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_17068935/hlv_1" mediaId="17068935">
780
+ <products total="3">
781
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=101388855&amp;i=17068935" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1990019.101388855/pNo_101388855/id_17068935" productTypeNumber="89" item="Women's T-Shirt" price="$17.99" marketplacePrice="22.00" productNumber="101388855" caption="The Best Things In Life Are Rescued Women&amp;apos;s T-Shir" sellerDescription="" storeName="DogmaDiva Store" storeUrl="http://www.cafepress.com/dogmadiva" parentSectionName="The Best Things In Life Are Rescued" parentSectionUrl="http://www.cafepress.com/dogmadiva/2398757">
782
+ <colors />
783
+
784
+ <sizes>
785
+ <size>Small</size>
786
+ <size>Medium</size>
787
+ <size>Large</size>
788
+ <size>X-Large</size>
789
+ <size>2X-Large (+$3.00)</size>
790
+
791
+ </sizes>
792
+ </product>
793
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=101388844&amp;i=17068935" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1990019.101388844/pNo_101388844/id_17068935" productTypeNumber="7" item="Light T-Shirt" price="$17.99" marketplacePrice="22.00" productNumber="101388844" caption="The Best Things In Life Are Rescued Ash Grey T-Shi" sellerDescription="" storeName="DogmaDiva Store" storeUrl="http://www.cafepress.com/dogmadiva" parentSectionName="The Best Things In Life Are Rescued" parentSectionUrl="http://www.cafepress.com/dogmadiva/2398757">
794
+ <colors>
795
+ <color>Ash Grey</color>
796
+ <color>Natural</color>
797
+ <color>Light Blue</color>
798
+
799
+ </colors>
800
+ <sizes>
801
+ <size>Small</size>
802
+ <size>Medium</size>
803
+ <size>Large</size>
804
+ <size>X-Large</size>
805
+ <size>2X-Large (+$3.00)</size>
806
+
807
+ <size>3X-Large (+$3.00)</size>
808
+ </sizes>
809
+ </product>
810
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=101388856&amp;i=17068935" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1990019.101388856/pNo_101388856/id_17068935" productTypeNumber="114" item="Women's Tank Top" price="$17.99" marketplacePrice="20.00" productNumber="101388856" caption="The Best Things In Life Are Rescued Women&amp;apos;s Tank T" sellerDescription="" storeName="DogmaDiva Store" storeUrl="http://www.cafepress.com/dogmadiva" parentSectionName="The Best Things In Life Are Rescued" parentSectionUrl="http://www.cafepress.com/dogmadiva/2398757">
811
+ <colors />
812
+ <sizes>
813
+ <size>Small</size>
814
+ <size>Medium</size>
815
+
816
+ <size>Large</size>
817
+ <size>X-Large</size>
818
+ <size>2X-Large (+$3.00)</size>
819
+ </sizes>
820
+ </product>
821
+ </products>
822
+ </searchResultItem>
823
+
824
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/21877878_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_21877878/hlv_1" mediaId="21877878">
825
+ <products total="3">
826
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=165208908&amp;i=21877878" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.165208908/pNo_165208908/id_21877878" productTypeNumber="110" item="Dog T-Shirt" price="$23.99" marketplacePrice="18.00" productNumber="165208908" caption="Rescue Dogs Rock Pet Dog Lover Dog T-Shirt" sellerDescription="This Rescue Dogs Rock, t-shirt and gift items is for the dog lover that has a rescue or shelter dog. Celebrate your pet with this unique design. For more dog owner inspired tee shirts and gifts visit" storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Rescue Dogs Rock Pet Dog Lover T-shirts &amp;amp; Gifts" parentSectionUrl="http://www.cafepress.com/solopress/3572817">
827
+ <colors />
828
+ <sizes>
829
+ <size>Small</size>
830
+ <size>Medium</size>
831
+ <size>Large</size>
832
+
833
+ <size>X-Large</size>
834
+ <size>2X-Large</size>
835
+ </sizes>
836
+ </product>
837
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=165208858&amp;i=21877878" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.165208858/pNo_165208858/id_21877878" productTypeNumber="137" item="Rectangle Magnet" price="$6.49" marketplacePrice="5.00" productNumber="165208858" caption="Rescue Dogs Rock Pet Dog Lover Rectangle Magnet" sellerDescription="This Rescue Dogs Rock, t-shirt and gift items is for the dog lover that has a rescue or shelter dog. Celebrate your pet with this unique design. For more dog owner inspired tee shirts and gifts visit" storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Rescue Dogs Rock Pet Dog Lover T-shirts &amp;amp; Gifts" parentSectionUrl="http://www.cafepress.com/solopress/3572817">
838
+ <colors />
839
+ <sizes />
840
+ </product>
841
+
842
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=165208855&amp;i=21877878" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.165208855/pNo_165208855/id_21877878" productTypeNumber="51" item="Sticker (Oval)" price="$5.99" marketplacePrice="4.00" productNumber="165208855" caption="Rescue Dogs Rock Pet Dog Lover Sticker (Oval)" sellerDescription="This Rescue Dogs Rock, t-shirt and gift items is for the dog lover that has a rescue or shelter dog. Celebrate your pet with this unique design. For more dog owner inspired tee shirts and gifts visit" storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Rescue Dogs Rock Pet Dog Lover T-shirts &amp;amp; Gifts" parentSectionUrl="http://www.cafepress.com/solopress/3572817">
843
+ <colors />
844
+ <sizes />
845
+ </product>
846
+ </products>
847
+ </searchResultItem>
848
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/17787427_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_17787427/hlv_1" mediaId="17787427">
849
+ <products total="3">
850
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=110010274&amp;i=17787427" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1935814.110010274/pNo_110010274/id_17787427" productTypeNumber="140" item="Cap" price="$23.99" marketplacePrice="17.00" productNumber="110010274" caption="Crazy Dog Lady Cap" sellerDescription="Crazy dog lady and three cute doggies is a design reserved for dog lovers with a sense of humor. If you think that one dog is never enough and love to laugh this is perfect for you!" storeName="Animal Lover Gift and T-shirt Shop" storeUrl="http://www.cafepress.com/pet_lover_gift" parentSectionName="Crazy Dog Lady T-shirt" parentSectionUrl="http://www.cafepress.com/pet_lover_gift/2571327">
851
+
852
+ <colors>
853
+ <color>White</color>
854
+ <color>Khaki</color>
855
+ </colors>
856
+ <sizes />
857
+ </product>
858
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=110010310&amp;i=17787427" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1935814.110010310/pNo_110010310/id_17787427" productTypeNumber="4" item="Sweatshirt" price="$43.99" marketplacePrice="30.00" productNumber="110010310" caption="Crazy Dog Lady Sweatshirt" sellerDescription="Crazy dog lady and three cute doggies is a design reserved for dog lovers with a sense of humor. If you think that one dog is never enough and love to laugh this is perfect for you!" storeName="Animal Lover Gift and T-shirt Shop" storeUrl="http://www.cafepress.com/pet_lover_gift" parentSectionName="Crazy Dog Lady T-shirt" parentSectionUrl="http://www.cafepress.com/pet_lover_gift/2571327">
859
+ <colors>
860
+
861
+ <color>White</color>
862
+ <color>Ash Grey</color>
863
+ </colors>
864
+ <sizes>
865
+ <size>Small</size>
866
+ <size>Medium</size>
867
+ <size>Large</size>
868
+
869
+ <size>X-Large</size>
870
+ <size>2X-Large (+$3.00)</size>
871
+ </sizes>
872
+ </product>
873
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=110010334&amp;i=17787427" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1935814.110010334/pNo_110010334/id_17787427" productTypeNumber="109" item="Women's Light T-Shirt" price="$24.99" marketplacePrice="22.00" productNumber="110010334" caption="Crazy Dog Lady Women&amp;apos;s Light T-Shirt" sellerDescription="Crazy dog lady and three cute doggies is a design reserved for dog lovers with a sense of humor. If you think that one dog is never enough and love to laugh this is perfect for you!" storeName="Animal Lover Gift and T-shirt Shop" storeUrl="http://www.cafepress.com/pet_lover_gift" parentSectionName="Crazy Dog Lady T-shirt" parentSectionUrl="http://www.cafepress.com/pet_lover_gift/2571327">
874
+ <colors>
875
+ <color>Light Pink</color>
876
+
877
+ <color>Light Yellow</color>
878
+ <color>Light Blue</color>
879
+ </colors>
880
+ <sizes>
881
+ <size>Small</size>
882
+ <size>Medium</size>
883
+ <size>Large</size>
884
+
885
+ <size>X-Large</size>
886
+ <size>2X-Large (+$3.00)</size>
887
+ </sizes>
888
+ </product>
889
+ </products>
890
+ </searchResultItem>
891
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/35743279_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_35743279/hlv_1" mediaId="35743279">
892
+ <products total="1">
893
+
894
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=409846462&amp;i=35743279" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1995747.409846462/pNo_409846462/id_35743279" productTypeNumber="75" item="Wall Calendar" price="$18.99" marketplacePrice="20.00" productNumber="409846462" caption="Doodle Calendar - 100% of Profits Support Rescue" sellerDescription="Labradoodles and Goldendoodles helping doodles in Rescue. 100% of profits go to the IDOG Rescue Program" storeName="International Doodle Owners Group, Inc." storeUrl="http://www.cafepress.com/idog" parentSectionName="" parentSectionUrl="http://www.cafepress.com/idog">
895
+ <colors />
896
+ <sizes />
897
+ </product>
898
+ </products>
899
+ </searchResultItem>
900
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/10077904_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_10077904/hlv_1" mediaId="10077904">
901
+ <products total="1">
902
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=40574421&amp;i=10077904" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_643668.40574421/pNo_40574421/id_10077904" productTypeNumber="110" item="Dog T-Shirt" price="$19.90" marketplacePrice="18.00" productNumber="40574421" caption="Evil Doer- War on Terror Dog T-Shirt" sellerDescription="Now your dog can proudly let others know that it is an &amp;quot;Evil Doer&amp;quot; and is an insurgency within your home. -- www.obeythepurebreed.com" storeName="Obey the pure breed! The Dog Revolution" storeUrl="http://www.cafepress.com/dogs_of_war" parentSectionName="DOG SHIRTS" parentSectionUrl="http://www.cafepress.com/dogs_of_war/1038764">
903
+
904
+ <colors />
905
+ <sizes>
906
+ <size>Small</size>
907
+ <size>Medium</size>
908
+ <size>Large</size>
909
+ <size>X-Large</size>
910
+ <size>2X-Large</size>
911
+
912
+ </sizes>
913
+ </product>
914
+ </products>
915
+ </searchResultItem>
916
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36499707_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36499707/hlv_1" mediaId="36499707">
917
+ <products total="2">
918
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417844692&amp;i=36499707" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4522097.417844692/pNo_417844692/id_36499707" productTypeNumber="1" item="Large Mug " price="$12.99" marketplacePrice="18.00" productNumber="417844692" caption="Large Mug" sellerDescription="Scooter&amp;apos;s at it again... it&amp;apos;s a dogs life." storeName="OldGloryDesigns" storeUrl="http://www.cafepress.com/OldGloryDesigns" parentSectionName="Bags, Coffee Mugs, Mouse Pad and more..." parentSectionUrl="http://www.cafepress.com/OldGloryDesigns/6968433">
919
+ <colors />
920
+ <sizes />
921
+
922
+ </product>
923
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417844693&amp;i=36499707" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4522097.417844693/pNo_417844693/id_36499707" productTypeNumber="0" item="Mug " price="$11.99" marketplacePrice="15.00" productNumber="417844693" caption="Mug" sellerDescription="Scooter&amp;apos;s at it again... it&amp;apos;s a dogs life." storeName="OldGloryDesigns" storeUrl="http://www.cafepress.com/OldGloryDesigns" parentSectionName="Bags, Coffee Mugs, Mouse Pad and more..." parentSectionUrl="http://www.cafepress.com/OldGloryDesigns/6968433">
924
+ <colors />
925
+ <sizes />
926
+ </product>
927
+ </products>
928
+ </searchResultItem>
929
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/11429351_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_11429351/hlv_1" mediaId="11429351">
930
+ <products total="1">
931
+
932
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=49896724&amp;i=11429351" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_918369.49896724/pNo_49896724/id_11429351" productTypeNumber="90" item="Sticker (Bumper)" price="$4.49" marketplacePrice="5.00" productNumber="49896724" caption="Dog Smarter Than President-1 Sticker (Bumper)" sellerDescription="My Dog Is Smarter Than YOUR President. Fun design to let the world know how you feel about George W. Bush. Great gift idea for the liberal in your life. JillyJax Pet Art" storeName="JillyJax Pet Art Tshirts Sweatshirts Gifts &amp;amp; More" storeUrl="http://www.cafepress.com/jillyjaxpetart" parentSectionName="MY DOG IS SMARTER THAN YOUR PRESIDENT" parentSectionUrl="http://www.cafepress.com/jillyjaxpetart/1255122">
933
+ <colors />
934
+ <sizes />
935
+ </product>
936
+ </products>
937
+ </searchResultItem>
938
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/9015496_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_9015496/hlv_1" mediaId="9015496">
939
+ <products total="3">
940
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33779869&amp;i=9015496" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_965872.33779869/pNo_33779869/id_9015496" productTypeNumber="137" item="Rectangle Magnet" price="$4.49" marketplacePrice="5.00" productNumber="33779869" caption="Dog Prayer Rectangle Magnet" sellerDescription="Lord, help me be the person my dog thinks I am." storeName="www.Turn-Left.com" storeUrl="http://www.cafepress.com/turn_left" parentSectionName="Dog Prayer (Over 35 different products!) " parentSectionUrl="http://www.cafepress.com/turn_left/896801">
941
+
942
+ <colors />
943
+ <sizes />
944
+ </product>
945
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33779874&amp;i=9015496" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_965872.33779874/pNo_33779874/id_9015496" productTypeNumber="4" item="Sweatshirt" price="$31.99" marketplacePrice="30.00" productNumber="33779874" caption="Dog Prayer Sweatshirt" sellerDescription="Lord, help me be the person my dog thinks I am." storeName="www.Turn-Left.com" storeUrl="http://www.cafepress.com/turn_left" parentSectionName="Dog Prayer (Over 35 different products!) " parentSectionUrl="http://www.cafepress.com/turn_left/896801">
946
+ <colors>
947
+ <color>White</color>
948
+ <color>Ash Grey</color>
949
+ </colors>
950
+
951
+ <sizes>
952
+ <size>Small</size>
953
+ <size>Medium</size>
954
+ <size>Large</size>
955
+ <size>X-Large</size>
956
+ <size>2X-Large (+$3.00)</size>
957
+
958
+ </sizes>
959
+ </product>
960
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=33779875&amp;i=9015496" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_965872.33779875/pNo_33779875/id_9015496" productTypeNumber="37" item="Tile Coaster" price="$5.99" marketplacePrice="10.00" productNumber="33779875" caption="Dog Prayer Tile Coaster" sellerDescription="Lord, help me be the person my dog thinks I am." storeName="www.Turn-Left.com" storeUrl="http://www.cafepress.com/turn_left" parentSectionName="Dog Prayer (Over 35 different products!) " parentSectionUrl="http://www.cafepress.com/turn_left/896801">
961
+ <colors />
962
+ <sizes />
963
+ </product>
964
+ </products>
965
+ </searchResultItem>
966
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/6047974_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_6047974/hlv_1" mediaId="6047974">
967
+
968
+ <products total="1">
969
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=19034153&amp;i=6047974" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.19034153/pNo_19034153/id_6047974" productTypeNumber="90" item="Sticker (Bumper)" price="$6.49" marketplacePrice="5.00" productNumber="19034153" caption="Dog Prayer Sticker (Bumper)" sellerDescription="Only dog owners understand this prayer. Lord, please let me be the person my dog thinks I am." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Dog Prayer" parentSectionUrl="http://www.cafepress.com/4crazydogs/520945">
970
+ <colors />
971
+ <sizes />
972
+ </product>
973
+ </products>
974
+ </searchResultItem>
975
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/9786047_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_9786047/hlv_1" mediaId="9786047">
976
+ <products total="3">
977
+
978
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=90068161&amp;i=9786047" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2083949.90068161/pNo_90068161/id_9786047" productTypeNumber="4" item="Sweatshirt" price="$35.49" marketplacePrice="30.00" productNumber="90068161" caption="Dogprints 2 Sweatshirt" sellerDescription="Dogprints 2" storeName="Circle B Designs" storeUrl="http://www.cafepress.com/circlebdesigns" parentSectionName="My Dog Walks All Over Me" parentSectionUrl="http://www.cafepress.com/circlebdesigns/2163273">
979
+ <colors>
980
+ <color>White</color>
981
+ <color>Ash Grey</color>
982
+ </colors>
983
+ <sizes>
984
+ <size>Small</size>
985
+
986
+ <size>Medium</size>
987
+ <size>Large</size>
988
+ <size>X-Large</size>
989
+ <size>2X-Large (+$3.00)</size>
990
+ </sizes>
991
+ </product>
992
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=90068151&amp;i=9786047" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2083949.90068151/pNo_90068151/id_9786047" productTypeNumber="7" item="Light T-Shirt" price="$20.49" marketplacePrice="22.00" productNumber="90068151" caption="Dogprints 2 Ash Grey T-Shirt" sellerDescription="Dogprints 2" storeName="Circle B Designs" storeUrl="http://www.cafepress.com/circlebdesigns" parentSectionName="My Dog Walks All Over Me" parentSectionUrl="http://www.cafepress.com/circlebdesigns/2163273">
993
+
994
+ <colors>
995
+ <color>Ash Grey</color>
996
+ <color>Natural</color>
997
+ <color>Light Blue</color>
998
+ </colors>
999
+ <sizes>
1000
+ <size>Small</size>
1001
+
1002
+ <size>Medium</size>
1003
+ <size>Large</size>
1004
+ <size>X-Large</size>
1005
+ <size>2X-Large (+$3.00)</size>
1006
+ <size>3X-Large (+$3.00)</size>
1007
+ </sizes>
1008
+
1009
+ </product>
1010
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=90068148&amp;i=9786047" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2083949.90068148/pNo_90068148/id_9786047" productTypeNumber="6" item="Jr. Jersey T-Shirt" price="$24.49" marketplacePrice="26.00" productNumber="90068148" caption="Dogprints 2 Jr. Jersey T-Shirt" sellerDescription="Dogprints 2" storeName="Circle B Designs" storeUrl="http://www.cafepress.com/circlebdesigns" parentSectionName="My Dog Walks All Over Me" parentSectionUrl="http://www.cafepress.com/circlebdesigns/2163273">
1011
+ <colors>
1012
+ <color>White</color>
1013
+ <color>Pink</color>
1014
+ <color>Lime</color>
1015
+ <color>Creme</color>
1016
+
1017
+ </colors>
1018
+ <sizes>
1019
+ <size>Small</size>
1020
+ <size>Medium</size>
1021
+ <size>Large</size>
1022
+ <size>X-Large</size>
1023
+ </sizes>
1024
+
1025
+ </product>
1026
+ </products>
1027
+ </searchResultItem>
1028
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/23145405_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_23145405/hlv_1" mediaId="23145405">
1029
+ <products total="3">
1030
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=181849734&amp;i=23145405" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1116673.181849734/pNo_181849734/id_23145405" productTypeNumber="4" item="Sweatshirt" price="$37.99" marketplacePrice="30.00" productNumber="181849734" caption="DOGGY Leader of the Pack Sweatshirt" sellerDescription="Leader of the Pack! They say that&amp;apos;s what you have to be if you want your dog to obey. So show the world, and your little dog too, who the boss is with this cute design that features puppy paw prints!" storeName="Scarebaby Design" storeUrl="http://www.cafepress.com/scarebaby" parentSectionName="Cute Doggie Design Leader of the Pack" parentSectionUrl="http://www.cafepress.com/scarebaby/3914776">
1031
+ <colors>
1032
+ <color>White</color>
1033
+
1034
+ <color>Ash Grey</color>
1035
+ </colors>
1036
+ <sizes>
1037
+ <size>Small</size>
1038
+ <size>Medium</size>
1039
+ <size>Large</size>
1040
+ <size>X-Large</size>
1041
+
1042
+ <size>2X-Large (+$3.00)</size>
1043
+ </sizes>
1044
+ </product>
1045
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=181849767&amp;i=23145405" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1116673.181849767/pNo_181849767/id_23145405" productTypeNumber="126" item="Ringer T" price="$22.99" marketplacePrice="22.00" productNumber="181849767" caption="DOGGY Leader of the Pack Ringer T" sellerDescription="Leader of the Pack! They say that&amp;apos;s what you have to be if you want your dog to obey. So show the world, and your little dog too, who the boss is with this cute design that features puppy paw prints!" storeName="Scarebaby Design" storeUrl="http://www.cafepress.com/scarebaby" parentSectionName="Cute Doggie Design Leader of the Pack" parentSectionUrl="http://www.cafepress.com/scarebaby/3914776">
1046
+ <colors>
1047
+ <color>Black/White</color>
1048
+ <color>Red/White</color>
1049
+
1050
+ <color>Navy/White</color>
1051
+ </colors>
1052
+ <sizes>
1053
+ <size>Small</size>
1054
+ <size>Medium</size>
1055
+ <size>Large</size>
1056
+ <size>X-Large</size>
1057
+
1058
+ <size>2X-Large (+$3.00)</size>
1059
+ </sizes>
1060
+ </product>
1061
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=181849731&amp;i=23145405" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1116673.181849731/pNo_181849731/id_23145405" productTypeNumber="17" item="Tote Bag" price="$19.99" marketplacePrice="17.00" productNumber="181849731" caption="DOGGY Leader of the Pack Tote Bag" sellerDescription="Leader of the Pack! They say that&amp;apos;s what you have to be if you want your dog to obey. So show the world, and your little dog too, who the boss is with this cute design that features puppy paw prints!" storeName="Scarebaby Design" storeUrl="http://www.cafepress.com/scarebaby" parentSectionName="Cute Doggie Design Leader of the Pack" parentSectionUrl="http://www.cafepress.com/scarebaby/3914776">
1062
+ <colors />
1063
+ <sizes />
1064
+ </product>
1065
+ </products>
1066
+
1067
+ </searchResultItem>
1068
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/31210027_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_31210027/hlv_1" mediaId="31210027">
1069
+ <products total="1">
1070
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=327629873&amp;i=31210027" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3710337.327629873/pNo_327629873/id_31210027" productTypeNumber="105" item="Ornament (Oval)" price="$8.99" marketplacePrice="12.00" productNumber="327629873" caption="Golden Retriever Christmas Ornament (Oval)" sellerDescription="This Christmas Golden Retriever has the holiday spirit with a cute red santa hat and the festive green surroundings! Merry Christmas to pet owners everywhere that love their dogs!" storeName="Holiday Golden" storeUrl="http://www.cafepress.com/HolidayGolden" parentSectionName="" parentSectionUrl="http://www.cafepress.com/HolidayGolden">
1071
+ <colors />
1072
+ <sizes />
1073
+ </product>
1074
+ </products>
1075
+ </searchResultItem>
1076
+
1077
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/28566422_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_28566422/hlv_1" mediaId="28566422">
1078
+ <products total="3">
1079
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=300270851&amp;i=28566422" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1043520.300270851/pNo_300270851/id_28566422" productTypeNumber="124" item="Ornament (Round) " price="$12.99" marketplacePrice="12.00" productNumber="300270851" caption="XmasMusic1MC/ Dachshund (BT) Ornament (Round)" sellerDescription="A Christmas ornament to celebrate the joy our music brings us shows a black and tan Dacshun with a dove, a snowman, Christmas tree and colorful musical notes. The words say Merry Christmas at the top." storeName="PRETTY ORNAMENTS" storeUrl="http://www.cafepress.com/prettyornaments" parentSectionName="DACHSHUND" parentSectionUrl="http://www.cafepress.com/prettyornaments/820522">
1080
+ <colors />
1081
+ <sizes />
1082
+ </product>
1083
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=320184683&amp;i=28566422" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3208400.320184683/pNo_320184683/id_28566422" productTypeNumber="37" item="Tile Coaster" price="$9.99" marketplacePrice="10.00" productNumber="320184683" caption="XmasMusic1/Dachshund #17 Tile Coaster" sellerDescription="Christmas music theme with a black and tan dachshund, a dove, a snowman, Christmas tree and colorful musical notes. A perfect Christmas design to celebrate the joy our Christmas music brings us." storeName="Holiday Dog Art" storeUrl="http://www.cafepress.com/holidaydogart" parentSectionName="CHRISTMAS MUSIC #1&amp;lt;br&amp;gt;&amp;amp; Dachshund" parentSectionUrl="http://www.cafepress.com/holidaydogart/6102138">
1084
+ <colors />
1085
+ <sizes />
1086
+
1087
+ </product>
1088
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=320184700&amp;i=28566422" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3208400.320184700/pNo_320184700/id_28566422" productTypeNumber="4" item="Sweatshirt" price="$43.99" marketplacePrice="30.00" productNumber="320184700" caption="XmasMusic1/Dachshund #17 Sweatshirt" sellerDescription="Christmas music theme with a black and tan dachshund, a dove, a snowman, Christmas tree and colorful musical notes. A perfect Christmas design to celebrate the joy our Christmas music brings us." storeName="Holiday Dog Art" storeUrl="http://www.cafepress.com/holidaydogart" parentSectionName="CHRISTMAS MUSIC #1&amp;lt;br&amp;gt;&amp;amp; Dachshund" parentSectionUrl="http://www.cafepress.com/holidaydogart/6102138">
1089
+ <colors>
1090
+ <color>White</color>
1091
+ <color>Ash Grey</color>
1092
+ </colors>
1093
+ <sizes>
1094
+ <size>Small</size>
1095
+
1096
+ <size>Medium</size>
1097
+ <size>Large</size>
1098
+ <size>X-Large</size>
1099
+ <size>2X-Large (+$3.00)</size>
1100
+ </sizes>
1101
+ </product>
1102
+ </products>
1103
+
1104
+ </searchResultItem>
1105
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/10679827_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_10679827/hlv_1" mediaId="10679827">
1106
+ <products total="1">
1107
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=45240884&amp;i=10679827" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1477466.45240884/pNo_45240884/id_10679827" productTypeNumber="90" item="Sticker (Bumper)" price="$4.49" marketplacePrice="5.00" productNumber="45240884" caption="&amp;quot;Integrity&amp;quot; Bumper Sticker" sellerDescription="Loyal. Diligent. Honest. And can&amp;apos;t be bought off except with belly rubs and pigs&amp;apos; ears. If only our politicians were more like our Goldens." storeName="GoldenGear" storeUrl="http://www.cafepress.com/goldengear" parentSectionName="Bumper Stickers" parentSectionUrl="http://www.cafepress.com/goldengear/1149410">
1108
+ <colors />
1109
+ <sizes />
1110
+ </product>
1111
+ </products>
1112
+ </searchResultItem>
1113
+
1114
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/11627844_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_11627844/hlv_1" mediaId="11627844">
1115
+ <products total="3">
1116
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=214184392&amp;i=11627844" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_488588.214184392/pNo_214184392/id_11627844" productTypeNumber="124" item="Ornament (Round) " price="$8.99" marketplacePrice="12.00" productNumber="214184392" caption="Cavalier King Charles Spaniels Ornament (Round)" sellerDescription="Thanks to Nottingham Cavaliers and Conlon of Embroiderbee for sharing the photo of the adorable Cavalier puppy. The original colored pencil portrait, size 8x10&amp;quot; is available for purchase for $130. I" storeName="StonebrakerArt, Dog Portraits and Giftware Store" storeUrl="http://www.cafepress.com/stonebrakerart" parentSectionName="Cavalier King Charles Spaniels" parentSectionUrl="http://www.cafepress.com/stonebrakerart/4574592">
1117
+ <colors />
1118
+ <sizes />
1119
+ </product>
1120
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=214184373&amp;i=11627844" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_488588.214184373/pNo_214184373/id_11627844" productTypeNumber="86" item="Keepsake Box" price="$24.79" marketplacePrice="25.00" productNumber="214184373" caption="Cavalier King Charles Spaniels Keepsake Box" sellerDescription="Thanks to Nottingham Cavaliers and Conlon of Embroiderbee for sharing the photo of the adorable Cavalier puppy. The original colored pencil portrait, size 8x10&amp;quot; is available for purchase for $130. I" storeName="StonebrakerArt, Dog Portraits and Giftware Store" storeUrl="http://www.cafepress.com/stonebrakerart" parentSectionName="Cavalier King Charles Spaniels" parentSectionUrl="http://www.cafepress.com/stonebrakerart/4574592">
1121
+ <colors>
1122
+ <color>Mahogany</color>
1123
+
1124
+ <color>Black</color>
1125
+ </colors>
1126
+ <sizes />
1127
+ </product>
1128
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=214184372&amp;i=11627844" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_488588.214184372/pNo_214184372/id_11627844" productTypeNumber="37" item="Tile Coaster" price="$5.89" marketplacePrice="10.00" productNumber="214184372" caption="Cavalier King Charles Spaniels Tile Coaster" sellerDescription="Thanks to Nottingham Cavaliers and Conlon of Embroiderbee for sharing the photo of the adorable Cavalier puppy. The original colored pencil portrait, size 8x10&amp;quot; is available for purchase for $130. I" storeName="StonebrakerArt, Dog Portraits and Giftware Store" storeUrl="http://www.cafepress.com/stonebrakerart" parentSectionName="Cavalier King Charles Spaniels" parentSectionUrl="http://www.cafepress.com/stonebrakerart/4574592">
1129
+ <colors />
1130
+ <sizes />
1131
+ </product>
1132
+
1133
+ </products>
1134
+ </searchResultItem>
1135
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/28268108_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_28268108/hlv_1" mediaId="28268108">
1136
+ <products total="1">
1137
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=272435702&amp;i=28268108" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_2499518.272435702/pNo_272435702/id_28268108" productTypeNumber="49" item="Wall Clock" price="$14.99" marketplacePrice="18.00" productNumber="272435702" caption="Dog Wall Clock" sellerDescription="A HOWLING good TIME, this clock will brighten any room and every dog lover&amp;apos;s day. Proceeds benefit our rescue dogs." storeName="Save Our Tails Dog Store" storeUrl="http://www.cafepress.com/rvasdogs" parentSectionName="" parentSectionUrl="http://www.cafepress.com/rvasdogs">
1138
+ <colors />
1139
+ <sizes />
1140
+ </product>
1141
+ </products>
1142
+
1143
+ </searchResultItem>
1144
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/22567703_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_22567703/hlv_1" mediaId="22567703">
1145
+ <products total="1">
1146
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=174633275&amp;i=22567703" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1136708.174633275/pNo_174633275/id_22567703" productTypeNumber="110" item="Dog T-Shirt" price="$21.99" marketplacePrice="18.00" productNumber="174633275" caption="I Have Issues Dog T-Shirt" sellerDescription="Warn those around your pooch they may want to refrain from petting them. &amp;quot;I Have Issues&amp;quot; www.wickedattitude.com" storeName="WickedAttitude.com" storeUrl="http://www.cafepress.com/wickedtude" parentSectionName="Immoral Mutts" parentSectionUrl="http://www.cafepress.com/wickedtude/670722">
1147
+ <colors />
1148
+ <sizes>
1149
+ <size>Small</size>
1150
+ <size>Medium</size>
1151
+
1152
+ <size>Large</size>
1153
+ <size>X-Large</size>
1154
+ <size>2X-Large</size>
1155
+ </sizes>
1156
+ </product>
1157
+ </products>
1158
+ </searchResultItem>
1159
+
1160
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/19991138_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_19991138/hlv_1" mediaId="19991138">
1161
+ <products total="3">
1162
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=139307477&amp;i=19991138" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.139307477/pNo_139307477/id_19991138" productTypeNumber="124" item="Ornament (Round) " price="$12.99" marketplacePrice="12.00" productNumber="139307477" caption="Shelter Dogs Priceless Lover Ornament (Round)" sellerDescription="If you have a Shelter Dog then you know that Adopting a rescue dog is priceless. The love for these animals is priceless. So show your Shelter Dog how much you love them with this design." storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Shelter Dogs Priceless Barcode T-shirts &amp;amp; Gifts" parentSectionUrl="http://www.cafepress.com/solopress/1818548">
1163
+ <colors />
1164
+ <sizes />
1165
+ </product>
1166
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=139307492&amp;i=19991138" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.139307492/pNo_139307492/id_19991138" productTypeNumber="51" item="Sticker (Oval)" price="$5.99" marketplacePrice="4.00" productNumber="139307492" caption="Shelter Dogs Priceless Lover Sticker (Oval)" sellerDescription="If you have a Shelter Dog then you know that Adopting a rescue dog is priceless. The love for these animals is priceless. So show your Shelter Dog how much you love them with this design." storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Shelter Dogs Priceless Barcode T-shirts &amp;amp; Gifts" parentSectionUrl="http://www.cafepress.com/solopress/1818548">
1167
+ <colors />
1168
+ <sizes />
1169
+
1170
+ </product>
1171
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=139307519&amp;i=19991138" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1742496.139307519/pNo_139307519/id_19991138" productTypeNumber="113" item="Jr. Ringer T-Shirt" price="$23.99" marketplacePrice="26.00" productNumber="139307519" caption="Shelter Dogs Priceless Lover Jr. Ringer T-Shirt" sellerDescription="If you have a Shelter Dog then you know that Adopting a rescue dog is priceless. The love for these animals is priceless. So show your Shelter Dog how much you love them with this design." storeName="IveAlwaysWantedOneOfThose.com - Best Tshirts" storeUrl="http://www.cafepress.com/solopress" parentSectionName="Shelter Dogs Priceless Barcode T-shirts &amp;amp; Gifts" parentSectionUrl="http://www.cafepress.com/solopress/1818548">
1172
+ <colors>
1173
+ <color>Pink/Salmon</color>
1174
+ <color>Yellow/Gold</color>
1175
+ <color>Mint/Avocado</color>
1176
+ </colors>
1177
+
1178
+ <sizes>
1179
+ <size>Small</size>
1180
+ <size>Medium</size>
1181
+ <size>Large</size>
1182
+ <size>X-Large</size>
1183
+ </sizes>
1184
+ </product>
1185
+
1186
+ </products>
1187
+ </searchResultItem>
1188
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/34479826_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_34479826/hlv_1" mediaId="34479826">
1189
+ <products total="3">
1190
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=393163064&amp;i=34479826" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4233302.393163064/pNo_393163064/id_34479826" productTypeNumber="280" item="Sigg Water Bottle 1.0L" price="$24.99" marketplacePrice="28.00" productNumber="393163064" caption="Good Human Sigg Water Bottle 1.0L" sellerDescription="Be a good human" storeName="Good Human" storeUrl="http://www.cafepress.com/GoodHuman" parentSectionName="" parentSectionUrl="http://www.cafepress.com/GoodHuman">
1191
+ <colors>
1192
+ <color>White</color>
1193
+ </colors>
1194
+
1195
+ <sizes />
1196
+ </product>
1197
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=393163066&amp;i=34479826" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4233302.393163066/pNo_393163066/id_34479826" productTypeNumber="0" item="Mug " price="$10.99" marketplacePrice="15.00" productNumber="393163066" caption="Good Human Mug" sellerDescription="Be a good human" storeName="Good Human" storeUrl="http://www.cafepress.com/GoodHuman" parentSectionName="" parentSectionUrl="http://www.cafepress.com/GoodHuman">
1198
+ <colors />
1199
+ <sizes />
1200
+ </product>
1201
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=393163109&amp;i=34479826" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4233302.393163109/pNo_393163109/id_34479826" productTypeNumber="126" item="Ringer T" price="$17.99" marketplacePrice="22.00" productNumber="393163109" caption="Good Human Ringer T" sellerDescription="Be a good human" storeName="Good Human" storeUrl="http://www.cafepress.com/GoodHuman" parentSectionName="" parentSectionUrl="http://www.cafepress.com/GoodHuman">
1202
+ <colors>
1203
+ <color>Black/White</color>
1204
+
1205
+ <color>Red/White</color>
1206
+ <color>Navy/White</color>
1207
+ </colors>
1208
+ <sizes>
1209
+ <size>Small</size>
1210
+ <size>Medium</size>
1211
+ <size>Large</size>
1212
+
1213
+ <size>X-Large</size>
1214
+ <size>2X-Large (+$3.00)</size>
1215
+ </sizes>
1216
+ </product>
1217
+ </products>
1218
+ </searchResultItem>
1219
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36431322_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36431322/hlv_1" mediaId="36431322">
1220
+ <products total="3">
1221
+
1222
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309076&amp;i=36431322" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309076/pNo_417309076/id_36431322" productTypeNumber="161" item="Women's Dark T-Shirt" price="$23.99" marketplacePrice="24.00" productNumber="417309076" caption="Fun until cone... Women&amp;apos;s Dark T-Shirt" sellerDescription="" storeName="Second Chance Greyhounds on CafePress: Atlanta, GA" storeUrl="http://www.cafepress.com/2CG" parentSectionName="Fun until..." parentSectionUrl="http://www.cafepress.com/2CG/6965141">
1223
+ <colors>
1224
+ <color>Black</color>
1225
+ <color>Red</color>
1226
+ <color>Caribbean Blue</color>
1227
+ <color>Violet</color>
1228
+ </colors>
1229
+
1230
+ <sizes>
1231
+ <size>Small</size>
1232
+ <size>Medium</size>
1233
+ <size>Large</size>
1234
+ <size>X-Large</size>
1235
+ <size>2X-Large (+$3.00)</size>
1236
+
1237
+ </sizes>
1238
+ </product>
1239
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=422248760&amp;i=36431322" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.422248760/pNo_422248760/id_36431322" productTypeNumber="23" item="Hooded Sweatshirt" price="$37.99" marketplacePrice="35.00" productNumber="422248760" caption="Fun until...(2) Hooded Sweatshirt" sellerDescription="" storeName="Second Chance Greyhounds on CafePress: Atlanta, GA" storeUrl="http://www.cafepress.com/2CG" parentSectionName="Fun until..." parentSectionUrl="http://www.cafepress.com/2CG/6965141">
1240
+ <colors>
1241
+ <color>White</color>
1242
+ <color>Heather Grey</color>
1243
+ </colors>
1244
+ <sizes>
1245
+
1246
+ <size>Small</size>
1247
+ <size>Medium</size>
1248
+ <size>Large</size>
1249
+ <size>X-Large</size>
1250
+ <size>2X-Large (+$3.00)</size>
1251
+ </sizes>
1252
+
1253
+ </product>
1254
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=417309091&amp;i=36431322" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3883122.417309091/pNo_417309091/id_36431322" productTypeNumber="7" item="Light T-Shirt" price="$21.99" marketplacePrice="22.00" productNumber="417309091" caption="Fun until cone... Light T-Shirt (w/ 2CG logo)" sellerDescription="" storeName="Second Chance Greyhounds on CafePress: Atlanta, GA" storeUrl="http://www.cafepress.com/2CG" parentSectionName="Fun until..." parentSectionUrl="http://www.cafepress.com/2CG/6965141">
1255
+ <colors>
1256
+ <color>Ash Grey</color>
1257
+ <color>Natural</color>
1258
+ <color>Light Blue</color>
1259
+ </colors>
1260
+
1261
+ <sizes>
1262
+ <size>Small</size>
1263
+ <size>Medium</size>
1264
+ <size>Large</size>
1265
+ <size>X-Large</size>
1266
+ <size>2X-Large (+$3.00)</size>
1267
+
1268
+ <size>3X-Large (+$3.00)</size>
1269
+ </sizes>
1270
+ </product>
1271
+ </products>
1272
+ </searchResultItem>
1273
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/36582320_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_36582320/hlv_1" mediaId="36582320">
1274
+ <products total="1">
1275
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=418420673&amp;i=36582320" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_4636007.418420673/pNo_418420673/id_36582320" productTypeNumber="75" item="Wall Calendar" price="$17.99" marketplacePrice="20.00" productNumber="418420673" caption="2010 Dogs Wall Calendar" sellerDescription="These are my dogs, Bella (yellow lab) and Roscoe P Coltrane (golden lab puppy)" storeName="Jeremy Wheaton Photography" storeUrl="http://www.cafepress.com/JeremyWheaton" parentSectionName="2010 Wall Calendars" parentSectionUrl="http://www.cafepress.com/JeremyWheaton/6972687">
1276
+
1277
+ <colors />
1278
+ <sizes />
1279
+ </product>
1280
+ </products>
1281
+ </searchResultItem>
1282
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/7851563_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_7851563/hlv_1" mediaId="7851563">
1283
+ <products total="3">
1284
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=27517369&amp;i=7851563" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1226401.27517369/pNo_27517369/id_7851563" productTypeNumber="51" item="Sticker (Oval)" price="$4.49" marketplacePrice="4.00" productNumber="27517369" caption="Woof oval sticker" sellerDescription="Woof oval sticker" storeName="Vinyl Stickers - Bumper Stickers" storeUrl="http://www.cafepress.com/stickerton" parentSectionName="Animal &amp;amp; Pet Stickers" parentSectionUrl="http://www.cafepress.com/stickerton/747437">
1285
+ <colors />
1286
+
1287
+ <sizes />
1288
+ </product>
1289
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=68755983&amp;i=7851563" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1225075.68755983/pNo_68755983/id_7851563" productTypeNumber="51" item="Sticker (Oval)" price="$4.49" marketplacePrice="4.00" productNumber="68755983" caption="Woof Sticker (Oval)" sellerDescription="Woof Sticker." storeName="Sticker Mania" storeUrl="http://www.cafepress.com/stickermania" parentSectionName="" parentSectionUrl="http://www.cafepress.com/stickermania">
1290
+ <colors />
1291
+ <sizes />
1292
+ </product>
1293
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=109460665&amp;i=7851563" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1226401.109460665/pNo_109460665/id_7851563" productTypeNumber="50" item="Sticker (Rectangle)" price="$4.49" marketplacePrice="4.00" productNumber="109460665" caption="Woof Sticker (Rectangular)" sellerDescription="Show off your love for dogs." storeName="Vinyl Stickers - Bumper Stickers" storeUrl="http://www.cafepress.com/stickerton" parentSectionName="Woof T-shirts" parentSectionUrl="http://www.cafepress.com/stickerton/2559579">
1294
+ <colors />
1295
+ <sizes />
1296
+
1297
+ </product>
1298
+ </products>
1299
+ </searchResultItem>
1300
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/15971704_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_15971704/hlv_1" mediaId="15971704">
1301
+ <products total="3">
1302
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=61851693&amp;i=15971704" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1763699.61851693/pNo_61851693/id_15971704" productTypeNumber="37" item="Tile Coaster" price="$7.50" marketplacePrice="10.00" productNumber="61851693" caption="Bichon in Flowers Tile Coaster" sellerDescription="" storeName="BEVERLY GUHL&amp;apos;s Online Store" storeUrl="http://www.cafepress.com/guhl" parentSectionName="Bichon in Flowers" parentSectionUrl="http://www.cafepress.com/guhl/1531091">
1303
+ <colors />
1304
+ <sizes />
1305
+ </product>
1306
+
1307
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=61851689&amp;i=15971704" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1763699.61851689/pNo_61851689/id_15971704" productTypeNumber="142" item="Mini Button (10 pack)" price="$12.99" marketplacePrice="20.00" productNumber="61851689" caption="Bichon in Flowers Mini Button (10 pack)" sellerDescription="" storeName="BEVERLY GUHL&amp;apos;s Online Store" storeUrl="http://www.cafepress.com/guhl" parentSectionName="Bichon in Flowers" parentSectionUrl="http://www.cafepress.com/guhl/1531091">
1308
+ <colors />
1309
+ <sizes />
1310
+ </product>
1311
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=61851688&amp;i=15971704" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1763699.61851688/pNo_61851688/id_15971704" productTypeNumber="143" item="Mini Button (100 pack)" price="$84.99" marketplacePrice="125.00" productNumber="61851688" caption="Bichon in Flowers Mini Button (100 pack)" sellerDescription="" storeName="BEVERLY GUHL&amp;apos;s Online Store" storeUrl="http://www.cafepress.com/guhl" parentSectionName="Bichon in Flowers" parentSectionUrl="http://www.cafepress.com/guhl/1531091">
1312
+ <colors />
1313
+ <sizes />
1314
+ </product>
1315
+ </products>
1316
+
1317
+ </searchResultItem>
1318
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/28178952_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_28178952/hlv_1" mediaId="28178952">
1319
+ <products total="3">
1320
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=270632845&amp;i=28178952" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3083901.270632845/pNo_270632845/id_28178952" productTypeNumber="51" item="Sticker (Oval)" price="$4.49" marketplacePrice="4.00" productNumber="270632845" caption="Sticker (Oval)" sellerDescription="" storeName="South East Border Collie Rescue League" storeUrl="http://www.cafepress.com/bcrsq" parentSectionName="Stickers" parentSectionUrl="http://www.cafepress.com/bcrsq/5094655">
1321
+ <colors />
1322
+ <sizes />
1323
+ </product>
1324
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=270995902&amp;i=28178952" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3083901.270995902/pNo_270995902/id_28178952" productTypeNumber="137" item="Rectangle Magnet" price="$4.49" marketplacePrice="5.00" productNumber="270995902" caption="Rectangle Magnet" sellerDescription="" storeName="South East Border Collie Rescue League" storeUrl="http://www.cafepress.com/bcrsq" parentSectionName="Buttons and Magnets" parentSectionUrl="http://www.cafepress.com/bcrsq/5110588">
1325
+ <colors />
1326
+
1327
+ <sizes />
1328
+ </product>
1329
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=270646169&amp;i=28178952" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3083901.270646169/pNo_270646169/id_28178952" productTypeNumber="0" item="Mug " price="$15.99" marketplacePrice="15.00" productNumber="270646169" caption="Mug" sellerDescription="" storeName="South East Border Collie Rescue League" storeUrl="http://www.cafepress.com/bcrsq" parentSectionName="Mugs &amp;amp; Steins" parentSectionUrl="http://www.cafepress.com/bcrsq/5108649">
1330
+ <colors />
1331
+ <sizes />
1332
+ </product>
1333
+ </products>
1334
+ </searchResultItem>
1335
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/13149644_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_13149644/hlv_1" mediaId="13149644">
1336
+
1337
+ <products total="3">
1338
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=63192004&amp;i=13149644" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1775401.63192004/pNo_63192004/id_13149644" productTypeNumber="23" item="Hooded Sweatshirt" price="$44.99" marketplacePrice="35.00" productNumber="63192004" caption="Best Shelter Dog Hooded Sweatshirt" sellerDescription="&amp;quot;The Best Dog is a Shelter Dog&amp;quot;. A sweet and adorable rescue pooch showing the love it has with red hearts above its head." storeName="Dog Lover Gifts and Shirts by DogWire" storeUrl="http://www.cafepress.com/dogwire" parentSectionName="Best Dog Shelter Dog" parentSectionUrl="http://www.cafepress.com/dogwire/1564191">
1339
+ <colors>
1340
+ <color>White</color>
1341
+ <color>Heather Grey</color>
1342
+ </colors>
1343
+ <sizes>
1344
+ <size>Small</size>
1345
+
1346
+ <size>Medium</size>
1347
+ <size>Large</size>
1348
+ <size>X-Large</size>
1349
+ <size>2X-Large (+$3.00)</size>
1350
+ </sizes>
1351
+ </product>
1352
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=63192008&amp;i=13149644" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1775401.63192008/pNo_63192008/id_13149644" productTypeNumber="140" item="Cap" price="$22.99" marketplacePrice="17.00" productNumber="63192008" caption="Best Shelter Dog Cap" sellerDescription="&amp;quot;The Best Dog is a Shelter Dog&amp;quot;. A sweet and adorable rescue pooch showing the love it has with red hearts above its head." storeName="Dog Lover Gifts and Shirts by DogWire" storeUrl="http://www.cafepress.com/dogwire" parentSectionName="Best Dog Shelter Dog" parentSectionUrl="http://www.cafepress.com/dogwire/1564191">
1353
+
1354
+ <colors>
1355
+ <color>White</color>
1356
+ <color>Khaki</color>
1357
+ </colors>
1358
+ <sizes />
1359
+ </product>
1360
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=63191964&amp;i=13149644" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1775401.63191964/pNo_63191964/id_13149644" productTypeNumber="89" item="Women's T-Shirt" price="$24.99" marketplacePrice="22.00" productNumber="63191964" caption="Best Shelter Dog Women&amp;apos;s T-Shirt" sellerDescription="&amp;quot;The Best Dog is a Shelter Dog&amp;quot;. A sweet and adorable rescue pooch showing the love it has with red hearts above its head." storeName="Dog Lover Gifts and Shirts by DogWire" storeUrl="http://www.cafepress.com/dogwire" parentSectionName="Best Dog Shelter Dog" parentSectionUrl="http://www.cafepress.com/dogwire/1564191">
1361
+ <colors />
1362
+
1363
+ <sizes>
1364
+ <size>Small</size>
1365
+ <size>Medium</size>
1366
+ <size>Large</size>
1367
+ <size>X-Large</size>
1368
+ <size>2X-Large (+$3.00)</size>
1369
+
1370
+ </sizes>
1371
+ </product>
1372
+ </products>
1373
+ </searchResultItem>
1374
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/7026495_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_7026495/hlv_1" mediaId="7026495">
1375
+ <products total="1">
1376
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=20532890&amp;i=7026495" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.20532890/pNo_20532890/id_7026495" productTypeNumber="90" item="Sticker (Bumper)" price="$5.49" marketplacePrice="5.00" productNumber="20532890" caption="More People (Dog) Bumper Sticker" sellerDescription="The more people I meet the more I like my dog." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="More People (Dog)" parentSectionUrl="http://www.cafepress.com/doghause/568781">
1377
+ <colors />
1378
+ <sizes />
1379
+
1380
+ </product>
1381
+ </products>
1382
+ </searchResultItem>
1383
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/8539366_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_8539366/hlv_1" mediaId="8539366">
1384
+ <products total="3">
1385
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=28431732&amp;i=8539366" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.28431732/pNo_28431732/id_8539366" productTypeNumber="109" item="Women's Light T-Shirt" price="$17.99" marketplacePrice="22.00" productNumber="28431732" caption="Dogs Leave Pawprints Women&amp;apos;s Pink T-Shirt" sellerDescription="White paw print on large red heart with the words &amp;quot;Dogs leave pawprints forever on your heart&amp;quot; surrounding it." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Dogs Leave Pawprints" parentSectionUrl="http://www.cafepress.com/4crazydogs/769969">
1386
+ <colors>
1387
+ <color>Light Pink</color>
1388
+
1389
+ <color>Light Yellow</color>
1390
+ <color>Light Blue</color>
1391
+ </colors>
1392
+ <sizes>
1393
+ <size>Small</size>
1394
+ <size>Medium</size>
1395
+ <size>Large</size>
1396
+
1397
+ <size>X-Large</size>
1398
+ <size>2X-Large (+$3.00)</size>
1399
+ </sizes>
1400
+ </product>
1401
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=28431769&amp;i=8539366" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.28431769/pNo_28431769/id_8539366" productTypeNumber="51" item="Sticker (Oval)" price="$4.99" marketplacePrice="4.00" productNumber="28431769" caption="Dogs Leave Pawprints Sticker (Oval)" sellerDescription="White paw print on large red heart with the words &amp;quot;Dogs leave pawprints forever on your heart&amp;quot; surrounding it." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Dogs Leave Pawprints" parentSectionUrl="http://www.cafepress.com/4crazydogs/769969">
1402
+ <colors />
1403
+ <sizes />
1404
+ </product>
1405
+
1406
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=28431758&amp;i=8539366" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_967357.28431758/pNo_28431758/id_8539366" productTypeNumber="119" item="Magnet" price="$7.98" marketplacePrice="4.00" productNumber="28431758" caption="Dogs Leave Pawprints Magnet" sellerDescription="White paw print on large red heart with the words &amp;quot;Dogs leave pawprints forever on your heart&amp;quot; surrounding it." storeName="4 Crazy Dogs" storeUrl="http://www.cafepress.com/4crazydogs" parentSectionName="Dogs Leave Pawprints" parentSectionUrl="http://www.cafepress.com/4crazydogs/769969">
1407
+ <colors />
1408
+ <sizes />
1409
+ </product>
1410
+ </products>
1411
+ </searchResultItem>
1412
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/12914141_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_12914141/hlv_1" mediaId="12914141">
1413
+ <products total="3">
1414
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=61161262&amp;i=12914141" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.61161262/pNo_61161262/id_12914141" productTypeNumber="109" item="Women's Light T-Shirt" price="$23.99" marketplacePrice="22.00" productNumber="61161262" caption="Adopt Shelter Pet Women&amp;apos;s Pink T-Shirt" sellerDescription="Adopt a shleter pet and save a life." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="Adopt Shelter Pet (Rainbow)" parentSectionUrl="http://www.cafepress.com/doghause/1514371">
1415
+
1416
+ <colors>
1417
+ <color>Light Pink</color>
1418
+ <color>Light Yellow</color>
1419
+ <color>Light Blue</color>
1420
+ </colors>
1421
+ <sizes>
1422
+ <size>Small</size>
1423
+
1424
+ <size>Medium</size>
1425
+ <size>Large</size>
1426
+ <size>X-Large</size>
1427
+ <size>2X-Large (+$3.00)</size>
1428
+ </sizes>
1429
+ </product>
1430
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=61161266&amp;i=12914141" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.61161266/pNo_61161266/id_12914141" productTypeNumber="135" item="Kids Sweatshirt" price="$25.99" marketplacePrice="18.00" productNumber="61161266" caption="Adopt Shelter Pet Kids Sweatshirt" sellerDescription="Adopt a shleter pet and save a life." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="Adopt Shelter Pet (Rainbow)" parentSectionUrl="http://www.cafepress.com/doghause/1514371">
1431
+
1432
+ <colors />
1433
+ <sizes>
1434
+ <size>S (6-8)</size>
1435
+ <size>M (10-12)</size>
1436
+ <size>L (14-16)</size>
1437
+ </sizes>
1438
+ </product>
1439
+
1440
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=61161267&amp;i=12914141" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_593567.61161267/pNo_61161267/id_12914141" productTypeNumber="133" item="Kids Hoodie" price="$27.99" marketplacePrice="20.00" productNumber="61161267" caption="Adopt Shelter Pet Kids Hoodie" sellerDescription="Adopt a shleter pet and save a life." storeName="Dog Hause Pet Shop Promoting Spay Neuter &amp;amp; Rescue" storeUrl="http://www.cafepress.com/doghause" parentSectionName="Adopt Shelter Pet (Rainbow)" parentSectionUrl="http://www.cafepress.com/doghause/1514371">
1441
+ <colors />
1442
+ <sizes>
1443
+ <size>S (6-8)</size>
1444
+ <size>M (10-12)</size>
1445
+ <size>L (14-16)</size>
1446
+ </sizes>
1447
+
1448
+ </product>
1449
+ </products>
1450
+ </searchResultItem>
1451
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/11006010_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_11006010/hlv_1" mediaId="11006010">
1452
+ <products total="3">
1453
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=46905943&amp;i=11006010" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1549515.46905943/pNo_46905943/id_11006010" productTypeNumber="137" item="Rectangle Magnet" price="$4.49" marketplacePrice="5.00" productNumber="46905943" caption="Rectangle Magnet" sellerDescription="" storeName="Patti Chance&amp;apos;s Shop" storeUrl="http://www.cafepress.com/pattichance" parentSectionName="" parentSectionUrl="http://www.cafepress.com/pattichance">
1454
+ <colors />
1455
+ <sizes />
1456
+ </product>
1457
+
1458
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=46905942&amp;i=11006010" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1549515.46905942/pNo_46905942/id_11006010" productTypeNumber="77" item="Postcards (Package of 8)" price="$8.39" marketplacePrice="8.00" productNumber="46905942" caption=" Postcards (Package of 8)" sellerDescription="" storeName="Patti Chance&amp;apos;s Shop" storeUrl="http://www.cafepress.com/pattichance" parentSectionName="" parentSectionUrl="http://www.cafepress.com/pattichance">
1459
+ <colors />
1460
+ <sizes />
1461
+ </product>
1462
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=46905940&amp;i=11006010" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1549515.46905940/pNo_46905940/id_11006010" productTypeNumber="125" item="Throw Pillow" price="$22.39" marketplacePrice="20.00" productNumber="46905940" caption=" Throw Pillow" sellerDescription="" storeName="Patti Chance&amp;apos;s Shop" storeUrl="http://www.cafepress.com/pattichance" parentSectionName="" parentSectionUrl="http://www.cafepress.com/pattichance">
1463
+ <colors />
1464
+ <sizes />
1465
+ </product>
1466
+ </products>
1467
+
1468
+ </searchResultItem>
1469
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/31652181_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_31652181/hlv_1" mediaId="31652181">
1470
+ <products total="3">
1471
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=335695126&amp;i=31652181" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1129767.335695126/pNo_335695126/id_31652181" productTypeNumber="49" item="Wall Clock" price="$15.99" marketplacePrice="18.00" productNumber="335695126" caption="World&amp;apos;s Greatest Dog Groomer Wall Clock" sellerDescription="Adorable clocks for dog lovers of all ages! Perfect for kid&amp;apos;s rooms, grooming shops, vet offices or anywhere! The perfect gift for your favorite dog lover." storeName="Nature Tees" storeUrl="http://www.cafepress.com/nature_tees" parentSectionName="New Dog Lover Clocks" parentSectionUrl="http://www.cafepress.com/nature_tees/6251323">
1472
+ <colors />
1473
+ <sizes />
1474
+ </product>
1475
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=335695125&amp;i=31652181" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1129767.335695125/pNo_335695125/id_31652181" productTypeNumber="232" item="Large Wall Clock" price="$34.99" marketplacePrice="40.00" productNumber="335695125" caption="World&amp;apos;s Greatest Dog Groomer Large Wall Clock" sellerDescription="Adorable clocks for dog lovers of all ages! Perfect for kid&amp;apos;s rooms, grooming shops, vet offices or anywhere! The perfect gift for your favorite dog lover." storeName="Nature Tees" storeUrl="http://www.cafepress.com/nature_tees" parentSectionName="New Dog Lover Clocks" parentSectionUrl="http://www.cafepress.com/nature_tees/6251323">
1476
+ <colors>
1477
+
1478
+ <color>Black</color>
1479
+ </colors>
1480
+ <sizes />
1481
+ </product>
1482
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=335695124&amp;i=31652181" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1129767.335695124/pNo_335695124/id_31652181" productTypeNumber="233" item="Modern Wall Clock" price="$37.99" marketplacePrice="40.00" productNumber="335695124" caption="World&amp;apos;s Greatest Dog Groomer Modern Wall Clock" sellerDescription="Adorable clocks for dog lovers of all ages! Perfect for kid&amp;apos;s rooms, grooming shops, vet offices or anywhere! The perfect gift for your favorite dog lover." storeName="Nature Tees" storeUrl="http://www.cafepress.com/nature_tees" parentSectionName="New Dog Lover Clocks" parentSectionUrl="http://www.cafepress.com/nature_tees/6251323">
1483
+ <colors>
1484
+ <color>Silver</color>
1485
+ </colors>
1486
+
1487
+ <sizes />
1488
+ </product>
1489
+ </products>
1490
+ </searchResultItem>
1491
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/16478880_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_16478880/hlv_1" mediaId="16478880">
1492
+ <products total="3">
1493
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=94689430&amp;i=16478880" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1990019.94689430/pNo_94689430/id_16478880" productTypeNumber="23" item="Hooded Sweatshirt" price="$37.99" marketplacePrice="35.00" productNumber="94689430" caption="True Love Is Rescued Hooded Sweatshirt" sellerDescription="" storeName="DogmaDiva Store" storeUrl="http://www.cafepress.com/dogmadiva" parentSectionName="True Love Is Rescued" parentSectionUrl="http://www.cafepress.com/dogmadiva/2257287">
1494
+ <colors>
1495
+ <color>White</color>
1496
+
1497
+ <color>Heather Grey</color>
1498
+ </colors>
1499
+ <sizes>
1500
+ <size>Small</size>
1501
+ <size>Medium</size>
1502
+ <size>Large</size>
1503
+ <size>X-Large</size>
1504
+
1505
+ <size>2X-Large (+$3.00)</size>
1506
+ </sizes>
1507
+ </product>
1508
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=94689445&amp;i=16478880" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1990019.94689445/pNo_94689445/id_16478880" productTypeNumber="114" item="Women's Tank Top" price="$17.99" marketplacePrice="20.00" productNumber="94689445" caption="True Love Is Rescued Women&amp;apos;s Tank Top" sellerDescription="" storeName="DogmaDiva Store" storeUrl="http://www.cafepress.com/dogmadiva" parentSectionName="True Love Is Rescued" parentSectionUrl="http://www.cafepress.com/dogmadiva/2257287">
1509
+ <colors />
1510
+ <sizes>
1511
+ <size>Small</size>
1512
+ <size>Medium</size>
1513
+
1514
+ <size>Large</size>
1515
+ <size>X-Large</size>
1516
+ <size>2X-Large (+$3.00)</size>
1517
+ </sizes>
1518
+ </product>
1519
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=94689433&amp;i=16478880" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1990019.94689433/pNo_94689433/id_16478880" productTypeNumber="4" item="Sweatshirt" price="$32.99" marketplacePrice="30.00" productNumber="94689433" caption="True Love Is Rescued Sweatshirt" sellerDescription="" storeName="DogmaDiva Store" storeUrl="http://www.cafepress.com/dogmadiva" parentSectionName="True Love Is Rescued" parentSectionUrl="http://www.cafepress.com/dogmadiva/2257287">
1520
+ <colors>
1521
+
1522
+ <color>White</color>
1523
+ <color>Ash Grey</color>
1524
+ </colors>
1525
+ <sizes>
1526
+ <size>Small</size>
1527
+ <size>Medium</size>
1528
+ <size>Large</size>
1529
+
1530
+ <size>X-Large</size>
1531
+ <size>2X-Large (+$3.00)</size>
1532
+ </sizes>
1533
+ </product>
1534
+ </products>
1535
+ </searchResultItem>
1536
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/33533874_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_33533874/hlv_1" mediaId="33533874">
1537
+ <products total="3">
1538
+
1539
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=373705337&amp;i=33533874" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3851272.373705337/pNo_373705337/id_33533874" productTypeNumber="78" item="Greeting Cards (Pk of 10)" price="$16.49" marketplacePrice="18.00" productNumber="373705337" caption="Santa&amp;apos;s Lab Cards (Pk of 10)" sellerDescription="These Yellow Labradore Retriever Christmas cards are perfect for any Lab Lover!" storeName="The Dog Lover Gift Shop" storeUrl="http://www.cafepress.com/shopdoggifts" parentSectionName="Santa&amp;apos;s Lab" parentSectionUrl="http://www.cafepress.com/shopdoggifts/6614755">
1540
+ <colors />
1541
+ <sizes />
1542
+ </product>
1543
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=373705335&amp;i=33533874" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3851272.373705335/pNo_373705335/id_33533874" productTypeNumber="193" item="Greeting Cards (Pk of 20)" price="$25.99" marketplacePrice="30.00" productNumber="373705335" caption="Santa&amp;apos;s Lab Cards (Pk of 20)" sellerDescription="These Yellow Labradore Retriever Christmas cards are perfect for any Lab Lover!" storeName="The Dog Lover Gift Shop" storeUrl="http://www.cafepress.com/shopdoggifts" parentSectionName="Santa&amp;apos;s Lab" parentSectionUrl="http://www.cafepress.com/shopdoggifts/6614755">
1544
+ <colors />
1545
+ <sizes />
1546
+ </product>
1547
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=373705336&amp;i=33533874" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3851272.373705336/pNo_373705336/id_33533874" productTypeNumber="192" item="Greeting Card" price="$3.49" marketplacePrice="3.50" productNumber="373705336" caption="Santa&amp;apos;s Lab Card" sellerDescription="These Yellow Labradore Retriever Christmas cards are perfect for any Lab Lover!" storeName="The Dog Lover Gift Shop" storeUrl="http://www.cafepress.com/shopdoggifts" parentSectionName="Santa&amp;apos;s Lab" parentSectionUrl="http://www.cafepress.com/shopdoggifts/6614755">
1548
+
1549
+ <colors />
1550
+ <sizes />
1551
+ </product>
1552
+ </products>
1553
+ </searchResultItem>
1554
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/7891076_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_7891076/hlv_1" mediaId="7891076">
1555
+ <products total="3">
1556
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=25828941&amp;i=7891076" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1235620.25828941/pNo_25828941/id_7891076" productTypeNumber="103" item="Jr. Hoodie" price="$32.88" marketplacePrice="30.00" productNumber="25828941" caption="Angels ARE Real! (Halo) Jr. Hoodie" sellerDescription="" storeName="FUZZYFACE CANINE COOKIE CORP www.fuzzyface.ca" storeUrl="http://www.cafepress.com/fuzzyfacek9" parentSectionName="Angels ARE Real! (Halo)" parentSectionUrl="http://www.cafepress.com/fuzzyfacek9/1039600">
1557
+ <colors />
1558
+
1559
+ <sizes>
1560
+ <size>Small</size>
1561
+ <size>Medium</size>
1562
+ <size>Large</size>
1563
+ <size>X-Large</size>
1564
+ </sizes>
1565
+ </product>
1566
+
1567
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=25828984&amp;i=7891076" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1235620.25828984/pNo_25828984/id_7891076" productTypeNumber="129" item="Women's Tracksuit" price="$50.88" marketplacePrice="40.00" productNumber="25828984" caption="Angels ARE Real! (Halo) Women&amp;apos;s Tracksuit" sellerDescription="" storeName="FUZZYFACE CANINE COOKIE CORP www.fuzzyface.ca" storeUrl="http://www.cafepress.com/fuzzyfacek9" parentSectionName="Angels ARE Real! (Halo)" parentSectionUrl="http://www.cafepress.com/fuzzyfacek9/1039600">
1568
+ <colors>
1569
+ <color>Black/White</color>
1570
+ <color>Pink/White</color>
1571
+ <color>Baby Blue/White</color>
1572
+ </colors>
1573
+ <sizes>
1574
+
1575
+ <size>Small</size>
1576
+ <size>Medium</size>
1577
+ <size>Large</size>
1578
+ <size>X-Large</size>
1579
+ </sizes>
1580
+ </product>
1581
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=25828981&amp;i=7891076" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_1235620.25828981/pNo_25828981/id_7891076" productTypeNumber="128" item="Women's Raglan Hoodie" price="$34.88" marketplacePrice="35.00" productNumber="25828981" caption="Angels ARE Real! (Halo) Women&amp;apos;s Raglan Hoodie" sellerDescription="" storeName="FUZZYFACE CANINE COOKIE CORP www.fuzzyface.ca" storeUrl="http://www.cafepress.com/fuzzyfacek9" parentSectionName="Angels ARE Real! (Halo)" parentSectionUrl="http://www.cafepress.com/fuzzyfacek9/1039600">
1582
+
1583
+ <colors>
1584
+ <color>Black/White</color>
1585
+ <color>Pink/White</color>
1586
+ <color>Baby Blue/White</color>
1587
+ </colors>
1588
+ <sizes>
1589
+ <size>Small</size>
1590
+
1591
+ <size>Medium</size>
1592
+ <size>Large</size>
1593
+ <size>X-Large</size>
1594
+ </sizes>
1595
+ </product>
1596
+ </products>
1597
+ </searchResultItem>
1598
+
1599
+ <searchResultItem type="IMAGE" mediaUrl="http://images.cafepress.com/image/29622497_125x125.jpg" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_details/pg_1/id_29622497/hlv_1" mediaId="29622497">
1600
+ <products total="2">
1601
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=294972680&amp;i=29622497" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3482510.294972680/pNo_294972680/id_29622497" productTypeNumber="152" item="Dark T-Shirt" price="$20.99" marketplacePrice="24.00" productNumber="294972680" caption="Peace, Love, Adoption Dark T-Shirt" sellerDescription="Celebrate saving an animal&amp;apos;s life, and spread the word about adoption as the best option. And thank you for becoming an angel to a homeless pet. :)" storeName="Peace, Love, Adoption" storeUrl="http://www.cafepress.com/peaceloveadopt2" parentSectionName="" parentSectionUrl="http://www.cafepress.com/peaceloveadopt2">
1602
+ <colors>
1603
+ <color>Black</color>
1604
+ <color>Cardinal</color>
1605
+ <color>Navy</color>
1606
+
1607
+ <color>Military Green</color>
1608
+ <color>Red</color>
1609
+ <color>Royal</color>
1610
+ <color>Brown</color>
1611
+ <color>Charcoal</color>
1612
+ <color>Kelly Green</color>
1613
+
1614
+ </colors>
1615
+ <sizes>
1616
+ <size>Small</size>
1617
+ <size>Medium</size>
1618
+ <size>Large</size>
1619
+ <size>X-Large</size>
1620
+ <size>2X-Large (+$3.00)</size>
1621
+
1622
+ <size>3X-Large (+$3.00)</size>
1623
+ </sizes>
1624
+ </product>
1625
+ <product thumbnailUrl="http://www.cafepress.com/cp/search/image.aspx?p=294972678&amp;i=29622497" marketplaceUrl="http://www.cafepress.com/buy/dog/-/pv_design_prod/pg_1/p_3482510.294972678/pNo_294972678/id_29622497" productTypeNumber="155" item="Long Sleeve Dark T-Shirt" price="$27.99" marketplacePrice="30.00" productNumber="294972678" caption="Peace, Love, Adoption Long Sleeve Dark T-Shirt" sellerDescription="Celebrate saving an animal&amp;apos;s life, and spread the word about adoption as the best option. And thank you for becoming an angel to a homeless pet. :)" storeName="Peace, Love, Adoption" storeUrl="http://www.cafepress.com/peaceloveadopt2" parentSectionName="" parentSectionUrl="http://www.cafepress.com/peaceloveadopt2">
1626
+ <colors>
1627
+ <color>Black</color>
1628
+ <color>Navy</color>
1629
+
1630
+ </colors>
1631
+ <sizes>
1632
+ <size>Small</size>
1633
+ <size>Medium</size>
1634
+ <size>Large</size>
1635
+ <size>X-Large</size>
1636
+ <size>2X-Large (+$3.00)</size>
1637
+
1638
+ <size>3X-Large (+$3.00)</size>
1639
+ <size>4X-Large (+$3.00)</size>
1640
+ </sizes>
1641
+ </product>
1642
+ </products>
1643
+ </searchResultItem>
1644
+ </mainResults>
1645
+ <searchQuery>
1646
+
1647
+ <searchString>dog</searchString>
1648
+ </searchQuery>
1649
+ <subtopics>
1650
+ <subtopic>pets</subtopic>
1651
+ <subtopic>pet</subtopic>
1652
+ <subtopic>canine</subtopic>
1653
+ <subtopic>puppy</subtopic>
1654
+
1655
+ <subtopic>gifts</subtopic>
1656
+ <subtopic>animals</subtopic>
1657
+ <subtopic>breeds</subtopic>
1658
+ <subtopic>art</subtopic>
1659
+ <subtopic>humor</subtopic>
1660
+ <subtopic>purebred</subtopic>
1661
+
1662
+ </subtopics>
1663
+ </searchResultSet>