shoppr 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,10 @@
1
+ module Shoppr
2
+ class Image
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :available?, :from => '@available'
6
+ xml_reader :height, :as => Integer, :from => '@height'
7
+ xml_reader :width, :as => Integer, :from => '@width'
8
+ xml_reader :source_url, :from => 'sourceURL'
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ module Shoppr
2
+ class KeywordSearch
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :dropped?, :from => '@dropped'
6
+ xml_reader :modified?, :from => '@modified'
7
+ xml_reader :original_keyword
8
+ xml_reader :result_keyword
9
+ end
10
+ end
@@ -0,0 +1,25 @@
1
+ module Shoppr
2
+ class Offer
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :id, :from => '@id'
6
+ xml_reader :name
7
+ xml_reader :description
8
+ xml_reader :manufacturer
9
+ xml_reader :images, :as => [Image], :in => 'imageList'
10
+ xml_reader :stock_status
11
+ xml_reader :store_notes
12
+ xml_reader :base_price, :as => Float
13
+ xml_reader :tax, :as => Float
14
+ xml_reader :shipping_cost, :as => Float
15
+ xml_reader :total_price, :as => Float
16
+ xml_reader :offer_url, :from => 'offerURL'
17
+ xml_reader :store, :as => Store
18
+ xml_reader :cpc, :as => Float
19
+ xml_reader :category_id, :as => Integer
20
+ xml_reader :product_id, :as => Integer
21
+ xml_reader :featured?, :from => :attr
22
+ xml_reader :used?, :from => :attr
23
+ xml_reader :smart_buy?, :from => :attr
24
+ end
25
+ end
@@ -0,0 +1,10 @@
1
+ module Shoppr
2
+ class OfferSelection
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :id, :from => '@id'
6
+ xml_reader :name
7
+ xml_reader :offer_url, :from => 'offerURL'
8
+ xml_reader :dropped?, :from => '@dropped'
9
+ end
10
+ end
@@ -0,0 +1,28 @@
1
+ module Shoppr
2
+ class Product
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :id, :from => '@id', :as => Integer
6
+ xml_reader :name
7
+ xml_reader :short_description
8
+ xml_reader :full_description
9
+ xml_reader :images, :as => [Image], :in => 'images'
10
+
11
+ xml_reader :review_count, :as => Integer, :from => 'rating/reviewCount'
12
+ xml_reader :rating, :as => Float, :from => 'rating/rating'
13
+ xml_reader :rating_image, :as => Image, :from => 'rating/ratingImage'
14
+ xml_reader :review_url, :from => 'reviewURL', :from => 'rating/reviewURL'
15
+
16
+ xml_reader :reviews, :as => [ConsumerReview], :from => 'reviews/consumerReview'
17
+ xml_reader :overall_rating, :as => Float, :from => 'reviews/averageRating/overallRating'
18
+ xml_reader :feature_ratings, :as => [FeatureRating], :from => 'reviews/averageRating/featureRating'
19
+ xml_reader :write_review_url, :from => 'reviews/writeReviewURL'
20
+
21
+ xml_reader :min_price, :as => Float
22
+ xml_reader :max_price, :as => Float
23
+ xml_reader :product_offers_url, :from => 'productOffersURL'
24
+ xml_reader :product_specs_url, :from => 'productSpecsURL'
25
+ xml_reader :offers, :as => [Offer], :in => 'offers'
26
+ xml_reader :specifications, :as => [FeatureGroup], :from => 'specifications/featureGroup'
27
+ end
28
+ end
@@ -0,0 +1,10 @@
1
+ module Shoppr
2
+ class ProductSelection
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :id, :from => '@id'
6
+ xml_reader :name
7
+ xml_reader :product_url, :from => 'productURL'
8
+ xml_reader :dropped?, :from => '@dropped'
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ module Shoppr
2
+ class SearchHistory
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :category_selections, :as => [CategorySelection]
6
+ xml_reader :product_selections, :as => [ProductSelection]
7
+ xml_reader :offer_selections, :as => [OfferSelection]
8
+ xml_reader :dynamic_navigation_history, :as => DynamicNavigationHistory
9
+ end
10
+ end
@@ -0,0 +1,13 @@
1
+ module Shoppr
2
+ class ServerDetail
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :api_env
6
+ xml_reader :api_version
7
+ xml_reader :build_number
8
+ xml_reader :build_timestamp
9
+ xml_reader :request_id
10
+ xml_reader :timestamp, :as => Time
11
+ xml_reader :response_time
12
+ end
13
+ end
@@ -0,0 +1,18 @@
1
+ module Shoppr
2
+ class Store
3
+ include ROXML
4
+ xml_convention {|val| val.camelize(:lower) }
5
+ xml_reader :id, :from => '@id', :as => Integer
6
+ xml_reader :name
7
+ xml_reader :logo, :as => Image
8
+ xml_reader :phone_number
9
+ xml_reader :trusted?, :from => :attr
10
+ xml_reader :authorized_reseller?, :from => :attr
11
+ xml_reader :country_flag, :as => Image
12
+ xml_reader :country_code, :from => 'countryFlag/countryCode'
13
+ xml_reader :review_count, :as => Integer, :from => 'ratingInfo/reviewCount'
14
+ xml_reader :rating, :as => Float, :from => 'ratingInfo/rating'
15
+ xml_reader :rating_image, :as => Image, :from => 'ratingInfo/ratingImage'
16
+ xml_reader :review_url, :from => 'ratingInfo/reviewURL'
17
+ end
18
+ end
@@ -0,0 +1 @@
1
+ <GeneralSearchResponse xmlns="urn:types.partner.api.shopping.com"><serverDetail><apiEnv>sandbox</apiEnv><apiVersion>3.1 R21.4</apiVersion><buildNumber>11332</buildNumber><buildTimestamp>2009.08.04 11:26:52 PST</buildTimestamp><requestId>w2.8817498383328ac21657</requestId><timestamp>2009-08-10T23:24:37.612-04:00</timestamp><responseTime>P0Y0M0DT0H0M0.158S</responseTime></serverDetail><exceptions exceptionCount="1"><exception type="warning"><code>1112</code><message>You are currently using the SDC API sandbox environment! No clicks to merchant URLs from this response will be paid. Please change the host of your API requests to 'publisher.api.shopping.com' when you have finished development and testing</message></exception></exceptions><clientTracking height="19" type="logo" width="106"><sourceURL>http://statTest.dealtime.com/pixel/noscript?PV_EvnTyp=APPV&amp;APPV_APITSP=08%2F10%2F09_11%3A24%3A37_PM&amp;APPV_DSPRQSID=w2.8817498383328ac21657&amp;APPV_IMGURL=http://img.shopping.com/sc/glb/sdc_logo_106x19.gif&amp;APPV_LI_LNKINID=7000610&amp;APPV_LI_SBMKYW=nikon&amp;APPV_MTCTYP=1000&amp;APPV_PRTID=2002&amp;APPV_BrnID=14305</sourceURL><hrefURL>http://www.shopping.com/xPP-digital_cameras</hrefURL><titleText>Digital Cameras</titleText><altText>Digital Cameras</altText></clientTracking><searchHistory><categorySelection id="3"><name>Electronics</name><categoryURL>http://www.shopping.com/xCH-electronics-nikon~linkin_id-7000610?oq=nikon</categoryURL></categorySelection><categorySelection id="449"><name>Cameras and Photography</name><categoryURL>http://www.shopping.com/xCH-cameras_and_photography-nikon~linkin_id-7000610?oq=nikon</categoryURL></categorySelection><categorySelection id="7185"><name>Digital Cameras</name><categoryURL>http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon</categoryURL></categorySelection><dynamicNavigationHistory><keywordSearch dropped="false" modified="false"><originalKeyword>nikon</originalKeyword><resultKeyword>nikon</resultKeyword></keywordSearch></dynamicNavigationHistory></searchHistory><categories matchedCategoryCount="1" returnedCategoryCount="1"><category id="7185"><name>Digital Cameras</name><categoryURL>http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon</categoryURL><items matchedItemCount="112" pageNumber="1" returnedItemCount="5"><product id="84682579"><name>Nikon D5000 Body Only Digital Camera</name><shortDescription>12.9 Megapixel, SLR Camera, 2.7 in. LCD Screen, With High Definition Video, Weight: 1.24 lb.</shortDescription><fullDescription>An innovative 2.7-in. Vari-angle monitor, outstanding 12.3-megapixel image quality, D-Movie capability, and expanded Scene Modes deliver renowned Nikon quality in a fun, easy-to-use digital SLR.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image></images><rating><reviewCount>22</reviewCount><rating>4.30</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.5.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D5000-Body-Only~linkin_id-7000610</reviewURL></rating><minPrice>155.00</minPrice><maxPrice>730.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D5000-Body-Only~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D5000-Body-Only~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="11" pageNumber="1" returnedOfferCount="5"><offer featured="true" id="ZWA4DNrpg_2Wy_b9akKFOQ==" smartBuy="false" used="false"><name>Nikon D5000 12.3 MP Digital SLR Camera (Body Only)</name><description>Meet the D5000, a breed of Nikon digital SLR camera. A wonderful blend of fun, simplicity, and beautiful image quality, the D5000 features an innovative Vari-angle monitor for an exciting new take on photographic expression. Combined with Live View shooting, this monitor gives you the ability to shoot from nearly any angle. And your creativity is not limited to still images - Nikon's D-Movie function lets you record richly detailed HD movie clips, too. There's also a dazzling array of shooting features to help you get great pictures, shot-after-shot.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/5a/57/41/34444e7270675f3257795f6239616b4b464f51-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Free 2nd Day Shipping!</storeNotes><basePrice currency="USD">729.99</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=45&amp;BEFID=7185&amp;code=4&amp;acode=114&amp;aon=%5E&amp;MerchantID=448058&amp;crawler_id=448058&amp;dealId=ZWA4DNrpg_2Wy_b9akKFOQ%3D%3D&amp;url=http%3A%2F%2Ftracking.searchmarketing.com%2Fclick.asp%3Faid%3D354737669&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D5000+12.3+MP+Digital+SLR+Camera+%28Body+Only%29&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=729.99&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=1.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=84682579&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="448058" trusted="true"><name>Dell</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/448058.gif</sourceURL></logo><ratingInfo><reviewCount>1481</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-448058~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="MEm-Biav3thY2Q33nZ9AVQ==" smartBuy="false" used="false"><name>Nikon D5000 DX-Format 12.3 Megapixel Digital SLR Camera Body with 720p HD Movie Mode and 2.7 Vari-angle LCD</name><description>The Nikon D5000 DX-Format Digital SLR Camera features an innovative Vari-angle monitor for an exciting new take on photographic expression. It adds a flexible dimension to Live View shooting, which vividly shows your subject in real-time. Now with this freely adjustable monitor, taking great shots and movie clips with Live View is easier and more enjoyable than ever.Nikon's DX-format CMOS sensor with 12.3 effective megapixels records all the details of the original scene for breathtakingly lifelike photos. Shadows and highlights reveal exceptional details while a remarkably high signal-to-noise ratio vastly reduces noise - especially important when shooting at high ISO settings.The D5000 enhances Live View shooting by giving you a choice of different display views. Minimize displayed camera settings when you want an uncluttered view of the scene, or show vital information at a glance for situations requiring a comprehensive readout of settings. Different types of photos require different focus strategies ...</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/4d/45/6d/2d4269617633746859325133336e5a39415651-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/4d/45/6d/2d4269617633746859325133336e5a39415651-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>FREE SHIPPING</storeNotes><basePrice currency="USD">726.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=400&amp;BEFID=7185&amp;code=443&amp;acode=449&amp;aon=%5E&amp;MerchantID=9391&amp;crawler_id=7009391&amp;dealId=MEm-Biav3thY2Q33nZ9AVQ%3D%3D&amp;url=http%3A%2F%2Fwww.adorama.com%2Frefby.tpl%3Frefby%3Ddealtime%26sku%3DINKD5000&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D5000+DX-Format+12.3+Megapixel+Digital+SLR+Camera+Body+with+720p+HD+Movie+Mode+and+2.7+Vari-angle+LCD&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=726.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=2.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=84682579&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="9391" trusted="true"><name>Adorama</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/9391.gif</sourceURL></logo><ratingInfo><reviewCount>6187</reviewCount><rating>4.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_45.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-9391~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="mOM-oZDVO-NQGvjwSzFQlg==" smartBuy="false" used="false"><name>Nikon D5000 Digital SLR Camera (Body Only) - 12.3 Megapixel, SD/SDHC, HDMI, USB</name><description>Featuring an incredible 12.3-megapixel DX-format CMOS image sensor, this camera can shoot high-quality photos from any angle.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/6d/4f/4d/2d6f5a44564f2d4e5147766a77537a46516c67-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/6d/4f/4d/2d6f5a44564f2d4e5147766a77537a46516c67-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/6d/4f/4d/2d6f5a44564f2d4e5147766a77537a46516c67-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Order Today, Ships Today</storeNotes><basePrice currency="USD">729.99</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=703&amp;BEFID=7185&amp;code=750&amp;acode=750&amp;aon=%5E&amp;MerchantID=471680&amp;crawler_id=471680&amp;dealId=mOM-oZDVO-NQGvjwSzFQlg%3D%3D&amp;url=http%3A%2F%2Fwww.circuitcity.com%2Fapplications%2Fsearchtools%2Fitem-details.asp%3FEdpNo%3D4638033%26SRCCODE%3DCCDSHOP%26cm_mmc_o%3D2mHCjCmtB55bETCjCVqHCjCdwwp&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D5000+Digital+SLR+Camera+%28Body+Only%29+-+12.3+Megapixel%2C+SD%2FSDHC%2C+HDMI%2C+USB&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=729.99&amp;crn=USD&amp;istrsmrc=0&amp;isathrsl=0&amp;AR=3.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=84682579&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="471680" trusted="false"><name>CircuitCity.com</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/471680.gif</sourceURL></logo><ratingInfo><reviewCount>793</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-471680~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="3AN-ElOCTIDNvTkE3aGOhA==" smartBuy="false" used="false"><name>Nikon Coolpix S220 10mp Digital Camera + 4gb Kit</name><description>eBay offers you smart deals and the widest selection, ranging from the everyday basics to things that are as unique as yourself. With millions of items to choose from, great deals are always just a click away.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/33/41/4e/2d456c4f435449444e76546b453361474f6841-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/33/41/4e/2d456c4f435449444e76546b453361474f6841-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/33/41/4e/2d456c4f435449444e76546b453361474f6841-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/33/41/4e/2d456c4f435449444e76546b453361474f6841-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><basePrice currency="USD">154.99</basePrice><tax checkSite="true"/><shippingCost checkSite="true"/><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=519&amp;BEFID=7185&amp;code=557&amp;acode=557&amp;aon=%5E&amp;MerchantID=446528&amp;crawler_id=1911462&amp;dealId=3AN-ElOCTIDNvTkE3aGOhA%3D%3D&amp;url=http%3A%2F%2Frover.ebay.com%2Frover%2F1%2F711-57618-1854-0%2F2%3Fmpre%3Dhttp%253A%252F%252Fitemlistings.ebay.com%252Fsdcsrp%253Ffl%253D300329170602%2526product%253D%7Bquery%7D%2526sconstraints%253DIncludeSelector%25253DDetails%25252CSellerInfo%252526ItemType%25253DAllFixedPriceItemTypes%252526ItemSort%25253DBestMatch%2526xm%2526siteid%253D0%26kw%3D%7Bquery%7D%26query%3D%7Bquery%7D%26fitem%3D300329170602%26mt_id%3D570&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+Coolpix+S220+10mp+Digital+Camera+%2B+4gb+Kit&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=154.99&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=4.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=84682579&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="446528" trusted="true"><name>eBay</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/446528.gif</sourceURL></logo><ratingInfo><reviewCount>1166</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-446528~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="UA-NVcqHUZvNosiTmBbC6g==" smartBuy="false" used="false"><name>Nikon Coolpix S220 Digital Camera Kit, Green With 4GB SD Memory Card, Camera Case, Spare EN EL-10 Lithium-Ion Battery, 2 Year Extended Service Coverage, Professional Lens Cleaning Kit</name><description>18mm ultra-slim and ultra-light design 10.0 effective megapixels for high-resolution images 3x Zoom-NIKKOR lens 2.5" high-resolution LCD monitor Electronic VR image stabilization</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/55/41/2d/4e56637148555a764e6f7369546d4262433667-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Fantastic prices with ease &amp; comfort of Amazon.com!</storeNotes><basePrice currency="USD">180.42</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=516&amp;BEFID=7185&amp;code=574&amp;acode=574&amp;aon=%5E&amp;MerchantID=301531&amp;crawler_id=811697&amp;dealId=UA-NVcqHUZvNosiTmBbC6g%3D%3D&amp;url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB001XZHHP2%2Fref%3Dasc_df_B001XZHHP2876923%3Fsmid%3DA17MC6HOH9AVE6%26tag%3Ddealtime-ce-mp01feed-20%26linkCode%3Dasn%26creative%3D380341%26creativeASIN%3DB001XZHHP2&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+Coolpix+S220+Digital+Camera+Kit%2C+Green+With+4GB+SD+Memory+Card%2C+Camera+Case%2C+Spare+EN+EL-10+Lithium-Ion+Battery%2C+2+Year+Extended+Service+Coverage%2C+Professional+Lens+Cleaning+Kit&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=180.42&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=5.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=84682579&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="301531" trusted="true"><name>Amazon Marketplace</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/301531.gif</sourceURL></logo><ratingInfo><reviewCount>160</reviewCount><rating>3.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_3.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-301531~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer></offers><specifications><featureGroup><name>Product MPN</name><feature><name>MPN</name><value>VAA116EA</value></feature></featureGroup><featureGroup><name>Key Features</name><feature><name>Camera Type</name><description>There are several different types of digital cameras. Compact and Ultra-compact are light, pocket-sized cameras that are easy to carry, usually with a built-in lens. Standard point-and-shoot cameras are of medium size, usually come with a built-in lens, and have basic features that are useful for the casual photographer. SLR/Professional cameras are usually larger, but offer more advanced features and detachable lenses for the photography enthusiast or professional.</description><value>SLR/Professional</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value/></feature><feature><name>Resolution</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>12.9 Megapixel</value></feature><feature><name>Image Sensor Type</name><description>A CCD sensor will provide a sharper more precise image, but is generally more power consuming. CMOS sensors are generally more energy efficient and are creating better and better images as technology develops.</description><value>CMOS</value></feature><feature><name>Weight</name><value>1.24 lb.</value></feature></featureGroup><featureGroup><name>Lens</name><feature><name>Interchangeable Lens</name><description>Higher-end cameras may allow you to separate the camera body from the lens, allowing you to interchange lenses for different types of photography.</description><value>Interchangeable Lenses</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value/></feature><feature><name>35mm Zoom Lens</name><value/></feature><feature><name>Digital Zoom</name><description>Unlike optical zoom, digital zoom magnifies the pixels but not the actual image. The resulting image appears bigger, but is not as sharp as with an optical zoom.</description><value>Without Digital Zoom</value></feature><feature><name>Focus Type</name><value/></feature><feature><name>Focus Range</name><value/></feature><feature><name>Focal Length</name><description>The distance from the center of the lens to the image of an object at infinity. At same size, the distance from copy to image is four times the focal length of the lens. This also applies to lithographic process lens as well. A 35mm SLR camera has interchangeable lenses that can range in focal length from around 7 to 17mm which are usually fisheye, 17 to 35 are considered wide angle. 50mm is called the standard lens as it has the same equivalent focal length as the human eye. Anything longer is a telephoto lens. Usually expressed in millimeters, smaller focal lengths result in wider fields-of-view.</description><value/></feature></featureGroup><featureGroup><name>Image Quality</name><feature><name>Camera Resolution</name><description>Resolution is measured in megapixels. The higher the megapixels, the sharper and more detailed the pictures your digital camera can take, and the bigger you can enlarge them without losing the sharpness of the image. 3.1 megapixels and higher is usually considered sufficient for print-quality photos. Photos with a resolution of less than 3.1 megapixels are best viewed only on computers.</description><value>12.9 Megapixel</value></feature><feature><name>Image Resolutions</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>4288 x 2848</value><value>3216 x 2136</value><value>2144 x 1424</value></feature></featureGroup><featureGroup><name>Video</name><feature><name>Video Resolutions</name><description>Many digital cameras let you record short clips of highly compressed, low-resolution video, either as an MPEG movie or a Motion JPEG movie. This number shows the actual optimal size for a movie captured on your camera.</description><value>1280 x 720</value><value>320 x 216</value><value>640 x 424</value></feature><feature><name>Video Speed</name><value>24 fps</value></feature><feature><name>Video Format</name><value>AVI</value><value>Motion JPEG</value><value>HD (High Definition)</value></feature></featureGroup><featureGroup><name>Exposure Control</name><feature><name>Aperture Range</name><description>The aperture range measures how much light is let into the camera when taking a photo. Low f-stop settings are best for low light photography while higher f-stops provide a greater depth of field.</description><value/></feature><feature><name>Shutter Speed</name><description>The shutter speed of a camera depends on two variables: the size of the lens and the actual timing of the shutter, opening and closing. These two factors work as a team to control the amount of light that enters the camera. This is measured in fractions on a shutter speed dial which illustrate how long the shutter opens and closes in a set period of time. The term speed refers to how long the lens remains open. For example, a setting of 1/60 on a shutter speed dial means that the shutter opens and closes within one sixtieth of a second. Various shutter speeds can be used to manipulate the final result of the picture. Usually, a faster shutter speed is used to freeze the scene, for motion shots, while a slower speed is used to create more of an unfocused, abstract result.</description><value>30 - 1/4000 sec</value></feature><feature><name>White Balance</name><description>The white balance of a digital camera controls the color outcome of pictures. All light gives off a color temperature which the camera analyzes and internally adjusts, so that the colors of the picture are captured in their true form. Without the proper white balance, the color in a photo may contain an overabundance of blue, green or orange hues.</description><value>Auto</value><value>Manual</value><value>Fluorescent (Preset)</value><value>Incandescent (Preset)</value><value>Shade (Preset)</value><value>Sunset (Preset)</value><value>Flash (Preset)</value></feature><feature><name>Frames Per Second</name><value>4 Frames</value></feature></featureGroup><featureGroup><name>Storage</name><feature><name>Memory Type</name><description>There are many types of memory / media for digital cameras, but most models are compatible with only one. The most common are CompactFlash and SmartMedia. Many other cameras use Memory Stick and some write the pictures directly onto mini-CDs or floppy disks. It is helpful to choose some sort of memory device that is easy to find in stores, in case you need to purchase extra.</description><value>SD Card</value><value>SDHC Card</value></feature><feature><name>Compression Modes</name><value>Fine</value><value>Normal</value><value>Uncompressed</value><value>Basic</value></feature><feature><name>Compression Type</name><description>Many cameras include different settings to control photo resolution. The resolution of the pictures you take affects their quality as well as the amount of memory they utilize. Higher resolution results in higher quality, but takes up more memory.</description><value>JPEG</value><value>Raw Image</value><value>DPOF 1.1</value><value>EXIF 2.21</value><value>DCF 2.0</value></feature><feature><name>File Size (High Res.)</name><value/></feature><feature><name>File Size (Low Res.)</name><value/></feature></featureGroup><featureGroup><name>Flash</name><feature><name>ISO Speeds</name><description>ISO stands for International Standards Organization. It denotes the rating of a film's sensitivity to light (based on an arithmetical progression). Though digital cameras don't use film, they have adopted the same rating system for describing the sensitivity of the camera's imaging sensor. Digital cameras often include a control for adjusting the ISO speed; some will adjust it automatically depending on the lighting conditions, adjusting it upwards as the available light dims. For exampe, ISO 200 film is twice as fast as ISO 100 film but only half as fast as ISO 400. The scale is identical to ASA (American Standards Association). Generally, with higher ISO speeds there is more noise.</description><value>100</value><value>200</value><value>3200</value><value>6400</value></feature><feature><name>Flash Type</name><value>Built-In</value></feature><feature><name>Flash Functions</name><description>If the camera has a built-in flash, it might have several different flash functions, such as on/off or anti-redeye flash.</description><value>Front Sync Flash</value><value>Rear Sync Flash</value><value>Red-eye Reduction Flash</value><value>Slow Sync</value></feature></featureGroup><featureGroup><name>Viewfinder / Display</name><feature><name>Viewfinder</name><description>A viewfinder is the small square on the back of a camera that you look through to compose the scene. Some cameras have small screens on the back that act as viewfinders. Other cameras have small glass areas through which you can look out of the front of the camera.</description><value>Optical</value></feature><feature><name>LCD Screen</name><description>LCD stands for "Liquid Crystal Display." This is the small screen on the back of a camera that digitally displays the same image you would see through the viewfinder. On many cameras you can also review the pictures stored in the camera's memory on the LCD Panel.</description><value>With LCD Screen</value></feature><feature><name>LCD Screen Size</name><value>2.7 in.</value></feature><feature><name>LCD Screen Resolution</name><value>230,000 pixels</value></feature><feature><name>LCD Protected Position</name><value>With LCD Protected Position</value></feature></featureGroup><featureGroup><name>Interfaces</name><feature><name>Interface Type</name><description>The method by which your camera will communicate with your computer or other video device. Different methods enable you to download photos at varying speeds. Make sure the interface you want is also compatible with the computer you want to use it with.</description><value>USB 2.0</value><value>HDMI</value></feature><feature><name>Video Interface</name><value>Video Out</value></feature></featureGroup><featureGroup><name>Power Supply</name><feature><name>Battery Type</name><value>Rechargeable Li-Ion Battery</value></feature><feature><name>Battery Life</name><value/></feature></featureGroup><featureGroup><name>Included Features</name><feature><name>Self Timer</name><value>2 Sec.</value><value>5 Sec.</value><value>10 Sec.</value><value>20 Sec.</value></feature><feature><name>Built-in Microphone</name><value>With Built-in Microphone</value></feature><feature><name>Tripod Mount</name><value>With Tripod Mount</value></feature></featureGroup><featureGroup><name>System Requirements</name><feature><name>Operating System</name><value/></feature></featureGroup><featureGroup><name>Dimensions</name><feature><name>Width</name><value>5 in.</value></feature><feature><name>Depth</name><value>3.1 in.</value></feature><feature><name>Height</name><value>4.1 in.</value></feature><feature><name>Weight</name><value>1.24 lb.</value></feature></featureGroup><featureGroup><name>Miscellaneous</name><feature><name>Family Line</name><value>Nikon D</value></feature><feature><name>Included Accessories</name><value>Software</value><value>USB Cable</value><value>Driver</value><value>Battery Charger</value><value>Strap</value><value>AV Cable</value><value>Li-Ion Rechargable Battery</value></feature><feature><name>UPC</name><value>018208254521</value></feature><feature><name>Release Date</name><value>14 April, 2009</value></feature><feature><name>Product ID</name><value>84682579</value></feature></featureGroup></specifications><reviews matchedReviewCount="24" pageNumber="1" returnedReviewCount="5"><averageRating><overallRating>4.30</overallRating></averageRating><consumerReview><authorID>mrf777</authorID><postDate>2009-01-14T07:50:13.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Great Printer</summary><pros>Great print quality, cheap replacement cartridges, easy to print photos and scan documents.</pros><cons>Its big and heavy, and loud when printing.</cons><reviewContent>I recently bought this printer from a Ink Stop store for $99.00 which includes the ink cartridges. I</reviewContent><fullReviewURL>http://www.epinions.com/content_457762573956?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>heather789</authorID><postDate>2008-11-30T20:36:26.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Print/ Scan/ Copy everything!</summary><pros>The dream printer and more.</pros><cons>Lots of cords.</cons><bottomLine>It is an amazing printer becasue it does everything. It is really easy to understand. I have never had any problems with it or it's super cheap ink.</bottomLine><reviewContent>This all in one printer/scanner/copier can do almost everything. It prints photos better than a one </reviewContent><fullReviewURL>http://www.epinions.com/content_453300358788?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>afjmusicman</authorID><postDate>2004-07-16T04:55:06.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Great, professional like quality camera</summary><pros>Durable, professional, Nikon. Best in its class in my opinion.</pros><cons>Design placement of flash meter on camera is odd, but does not affect performance.</cons><bottomLine>Like all Nikon products, it is very durable and very professional. I've used three Nikons and they all still work great.</bottomLine><reviewContent>Nikon is probably the best in photography equipment. The Coolpix 5000 is a great camera for nearly a</reviewContent><fullReviewURL>http://www.epinions.com/content_147942968964?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>llrllr</authorID><postDate>2004-03-28T11:07:51.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Nikon 5000 has widest Coolpix lens -- still</summary><pros>Small size. Widest Coolpix lens, plus adapter gets to 19mm. Firmware upgrade shoots in RAW.</pros><cons>Focus, flash in dark situations. Shutter lag, but Internet Firmware upgrade fixes.</cons><bottomLine>Highly recommended for high quality photos with widest possible lens. Excellent image quality but firmware upgrade from Nikon is a must. It speeds up the shutter and adds RAW mode.</bottomLine><reviewContent>The Nikon 5000 has a 28mm lens, which goes down to 19mm with an accessory. This is the widest lens o</reviewContent><fullReviewURL>http://www.epinions.com/content_134788058756?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>elomage</authorID><postDate>2003-07-15T23:17:22.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Nikon Coolpix 5000: The reality check</summary><pros>Fast, great colors and resolution.</pros><cons>Price, slow learning curve, placement of sensors.</cons><bottomLine>Great camera, but you have to learn how to use it to take full advantage of it.</bottomLine><reviewContent>When I decided on Nikon Coolpix E5000 digital camera, this was the best prosumer camera on the marke</reviewContent><fullReviewURL>http://www.epinions.com/content_106214231684?linkin_id=7000610</fullReviewURL></consumerReview><writeReviewURL>http://www.epinions.com/content/write.html/dt_product_id_~84682579?linkin_id=7000610</writeReviewURL></reviews></product><product id="70621646"><name>Nikon D90 Digital Camera with 18-105mm lens</name><shortDescription>12.9 Megapixel, SLR Camera, 3 in. LCD Screen, 5.8x Optical Zoom, With Video Capability, Weight: 2.3 lb.</shortDescription><fullDescription>Its 12.3 megapixel DX-format CMOS image sensor and EXPEED image processing system offer outstanding image quality across a wide ISO light sensitivity range. Live View mode lets you compose and shoot via the high-resolution 3-inch LCD monitor, and an advanced Scene Recognition System and autofocus performance help capture images with astounding accuracy. Movies can be shot in Motion JPEG format using the D-Movie function. The camera’s large image sensor ensures exceptional movie image quality and you can create dramatic effects by shooting with a wide range of interchangeable NIKKOR lenses, from wide-angle to macro to fisheye, or by adjusting the lens aperture and experimenting with depth-of-field. The D90 – designed to fuel your passion for photography.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image></images><rating><reviewCount>12</reviewCount><rating>4.80</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_5.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D90-with-18-105mm-lens~linkin_id-7000610</reviewURL></rating><minPrice>1139.00</minPrice><maxPrice>1640.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D90-with-18-105mm-lens~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D90-with-18-105mm-lens~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="15" pageNumber="1" returnedOfferCount="5"><offer featured="true" id="RLu-6k_h68wSUtOQoMCsTw==" smartBuy="false" used="false"><name>Nikon D90 DX 12.3MP Digital SLR Camera with 18-105mm f/3.5-5.6G ED AF-S VR DX Nikkor Zoom Lens</name><description>12.3-megapixel DX-format CMOS imaging sensor 5.8x AF-S DX Nikkor 18-105mm f/3.5-5.6G ED VR lens included D-Movie Mode; Cinematic 24fps HD with sound 3-inch super-density 920,000-dot color LCD monitor Capture images to SD/SDHC memory cards (not included)</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/52/4c/75/2d366b5f683638775355744f516f4d43735477-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Get free shipping on orders over $25!</storeNotes><basePrice currency="USD">1299.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=66&amp;BEFID=7185&amp;code=51&amp;acode=51&amp;aon=%5E&amp;MerchantID=40085&amp;crawler_id=812191&amp;dealId=RLu-6k_h68wSUtOQoMCsTw%3D%3D&amp;url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB001ENOZY4%2Fref%3Dasc_df_B001ENOZY4877945%3Fsmid%3DATVPDKIKX0DER%26tag%3Ddealtime-ce-feed-20%26linkCode%3Dasn%26creative%3D380341%26creativeASIN%3DB001ENOZY4&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+DX+12.3MP+Digital+SLR+Camera+with+18-105mm+f%2F3.5-5.6G+ED+AF-S+VR+DX+Nikkor+Zoom+Lens&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=1299.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=1.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=15&amp;NMS=15&amp;MRS=15&amp;PD=70621646&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="40085" trusted="true"><name>Amazon</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/40085.gif</sourceURL></logo><ratingInfo><reviewCount>1638</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-40085~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="iUCku6bwD7PHtdcMIru6ZA==" smartBuy="false" used="false"><name>Nikon D90 12.3 MP Digital SLR Camera with AF-S DX NIKKOR 18-105mm f/3.5-5.6G ED VR Zoom Lens - MSRP $1299.99</name><description>Enjoy capturing stunning images with broad control with D90 Black 12.3 MP Digital SLR Camera (with 18-105 mm Lens) from Nikon®. The camera features a specially designed Nikon DX-format CMOS image sensor with a resolution of up to 12.3 MP and Integrated Dust Reduction system. It incorporates Nikon's comprehensive digital image-processing EXPEED concept. The high-quality D-SLR movie function allows options selectable from 320 x 216 pixels / 640 x 424 pixels / 1280 x 720 pixels in AVI format. The Scene Recognition system utilizes 420p RGB sensor that improves autofocus, auto exposure and auto white balance performance along with the integrated Face Detection system. It provides a 3” high-density color LCD with 170° ultra-wide viewing angle that enables Live View face priority AF.In addition, the Picture Control System offers new Portrait and Landscape options for more vibrant customized colors. Furthermore, the built-in flash commands Advanced Wireless Lighting with 18 mm lens coverage and i-TTL flash contro</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/69/55/43/6b75366277443750487464634d497275365a41-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Free 2nd Day Shipping!</storeNotes><basePrice currency="USD">1159.00</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=45&amp;BEFID=7185&amp;code=4&amp;acode=114&amp;aon=%5E&amp;MerchantID=448058&amp;crawler_id=448058&amp;dealId=iUCku6bwD7PHtdcMIru6ZA%3D%3D&amp;url=http%3A%2F%2Ftracking.searchmarketing.com%2Fclick.asp%3Faid%3D236462001&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+12.3+MP+Digital+SLR+Camera+with+AF-S+DX+NIKKOR+18-105mm+f%2F3.5-5.6G+ED+VR+Zoom+Lens+-+MSRP+%241299.99&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=1159.0&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=2.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=15&amp;NMS=15&amp;MRS=15&amp;PD=70621646&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="448058" trusted="true"><name>Dell</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/448058.gif</sourceURL></logo><ratingInfo><reviewCount>1481</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-448058~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="5tFaHjUDxkEsbvA5HCTNcg==" smartBuy="false" used="false"><name>Nikon D90 Digital Slr Camera &amp; 18-105mm Vr Lens Usa</name><description>eBay offers you smart deals and the widest selection, ranging from the everyday basics to things that are as unique as yourself. With millions of items to choose from, great deals are always just a click away.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/35/74/46/61486a5544786b4573627641354843544e6367-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/35/74/46/61486a5544786b4573627641354843544e6367-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/35/74/46/61486a5544786b4573627641354843544e6367-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/35/74/46/61486a5544786b4573627641354843544e6367-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><basePrice currency="USD">1149.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">19.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=519&amp;BEFID=7185&amp;code=557&amp;acode=599&amp;aon=%5E&amp;MerchantID=446528&amp;crawler_id=1911462&amp;dealId=5tFaHjUDxkEsbvA5HCTNcg%3D%3D&amp;url=http%3A%2F%2Frover.ebay.com%2Frover%2F1%2F711-57618-1854-0%2F2%3Fmpre%3Dhttp%253A%252F%252Fitemlistings.ebay.com%252Fsdcsrp%253Ffl%253D200371057187%2526product%253D%7Bquery%7D%2526sconstraints%253DIncludeSelector%25253DDetails%25252CSellerInfo%252526ItemType%25253DAllFixedPriceItemTypes%252526ItemSort%25253DBestMatch%2526xm%2526siteid%253D0%26kw%3D%7Bquery%7D%26query%3D%7Bquery%7D%26fitem%3D200371057187%26mt_id%3D570&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+Digital+Slr+Camera+%26+18-105mm+Vr+Lens+Usa&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=1168.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=3.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=15&amp;NMS=15&amp;MRS=15&amp;PD=70621646&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="446528" trusted="true"><name>eBay</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/446528.gif</sourceURL></logo><ratingInfo><reviewCount>1166</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-446528~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="hL1ew9YeanVZNQY1AnpPsg==" smartBuy="false" used="false"><name>Nikon D90 DX W/18-105MM Digital Cameras. 12.3-megapixel SLR digital camera</name><description>Nikons not just any camera company. These days, they essentially have a cult following on Internet photo-sharing communities, and many devoted users offline as well. The D90 will show you why. Fusing 12.3-megapixel image quality, a Zoom-NIKKOR 18-105mm lens, and a cinematic 24fps D-Movie Mode, the Nikon D90 exceeds the demands of the most passionate photographers.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/68/4c/31/6577395965616e565a4e515931416e70507367-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/68/4c/31/6577395965616e565a4e515931416e70507367-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/68/4c/31/6577395965616e565a4e515931416e70507367-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/68/4c/31/6577395965616e565a4e515931416e70507367-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>New</storeNotes><basePrice currency="USD">1229.97</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=71&amp;BEFID=7185&amp;code=109&amp;acode=23&amp;aon=%5E&amp;MerchantID=9080&amp;crawler_id=812075&amp;dealId=hL1ew9YeanVZNQY1AnpPsg%3D%3D&amp;url=http%3A%2F%2Fvanns.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1dSRhdqEnB9Z1EABEwEay5eVlJLGCIPPzg7WUZAChhwJRgURQVAMFFXEUcsKXxeWl9AFyw3HRUHFlVxTTchPgJUVVFNKiAKEERHGGsJd3JgFAYfX1k0PQFOD0oRc1tcElNudWsAAwAFWDJtGTwITnI2SzM0OkNVFkNEPDEABw5OQjdWHHgwQVtVXkM2NkBdTRBRMFxLW0F*eDBBW1NbUTt9UQ%3D%3D%26nAID%3D13736960&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+DX+W%2F18-105MM+Digital+Cameras.+12.3-megapixel+SLR+digital+camera&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=1229.97&amp;crn=USD&amp;istrsmrc=0&amp;isathrsl=0&amp;AR=4.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=15&amp;NMS=15&amp;MRS=15&amp;PD=70621646&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="9080" trusted="false"><name>Vanns.com</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/9080.gif</sourceURL></logo><ratingInfo><reviewCount>546</reviewCount><rating>4.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_45.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-9080~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="4J7lUdgVXRuYgW4KZCA_GQ==" smartBuy="false" used="false"><name>Nikon D90 DX-Format Digital SLR Outfit w/ 18-105mm DX VR Lens</name><description>Fusing 12.3-Megapixel image quality and a cinematic 24fps D-Movie Mode, the Nikon D90 exceeds the demands of passionate photographers.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/34/4a/37/6c55646756585275596757344b5a43415f4751-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/34/4a/37/6c55646756585275596757344b5a43415f4751-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Free 8GB Memory Card!</storeNotes><basePrice currency="USD">1169.00</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=169&amp;BEFID=7185&amp;code=248&amp;acode=248&amp;aon=%5E&amp;MerchantID=9190&amp;crawler_id=811634&amp;dealId=4J7lUdgVXRuYgW4KZCA_GQ%3D%3D&amp;url=http%3A%2F%2Fwww.beachcamera.com%2Fshop%2Fxt_cart_add.aspx%3Fomid%3D113%26ref%3Ddealtime%26utm_source%3DDealTime%26utm_medium%3Dcpc%26utm_campaign%3DNKD9018105%26sku%3DNKD9018105&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+DX-Format+Digital+SLR+Outfit+w%2F+18-105mm+DX+VR+Lens&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=1169.0&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=5.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=15&amp;NMS=15&amp;MRS=15&amp;PD=70621646&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="9190" trusted="true"><name>Beach Camera.com</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/9190.gif</sourceURL></logo><ratingInfo><reviewCount>7224</reviewCount><rating>4.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_45.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-9190~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer></offers><specifications><featureGroup><name>Product MPN</name><feature><name>MPN</name><value>25448</value></feature></featureGroup><featureGroup><name>Key Features</name><feature><name>Camera Type</name><description>There are several different types of digital cameras. Compact and Ultra-compact are light, pocket-sized cameras that are easy to carry, usually with a built-in lens. Standard point-and-shoot cameras are of medium size, usually come with a built-in lens, and have basic features that are useful for the casual photographer. SLR/Professional cameras are usually larger, but offer more advanced features and detachable lenses for the photography enthusiast or professional.</description><value>SLR/Professional</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value>5.8x</value></feature><feature><name>Resolution</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>12.9 Megapixel</value></feature><feature><name>Image Sensor Type</name><description>A CCD sensor will provide a sharper more precise image, but is generally more power consuming. CMOS sensors are generally more energy efficient and are creating better and better images as technology develops.</description><value>CMOS</value></feature><feature><name>Weight</name><value>2.3 lb.</value></feature></featureGroup><featureGroup><name>Lens</name><feature><name>Interchangeable Lens</name><description>Higher-end cameras may allow you to separate the camera body from the lens, allowing you to interchange lenses for different types of photography.</description><value>Interchangeable Lenses</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value>5.8x</value></feature><feature><name>35mm Zoom Lens</name><value>27 - 157.5 mm</value></feature><feature><name>Digital Zoom</name><description>Unlike optical zoom, digital zoom magnifies the pixels but not the actual image. The resulting image appears bigger, but is not as sharp as with an optical zoom.</description><value>Without Digital Zoom</value></feature><feature><name>Focus Type</name><value>Autofocus</value></feature><feature><name>Focus Range</name><value/></feature><feature><name>Focal Length</name><description>The distance from the center of the lens to the image of an object at infinity. At same size, the distance from copy to image is four times the focal length of the lens. This also applies to lithographic process lens as well. A 35mm SLR camera has interchangeable lenses that can range in focal length from around 7 to 17mm which are usually fisheye, 17 to 35 are considered wide angle. 50mm is called the standard lens as it has the same equivalent focal length as the human eye. Anything longer is a telephoto lens. Usually expressed in millimeters, smaller focal lengths result in wider fields-of-view.</description><value>18 - 105 mm</value></feature></featureGroup><featureGroup><name>Image Quality</name><feature><name>Camera Resolution</name><description>Resolution is measured in megapixels. The higher the megapixels, the sharper and more detailed the pictures your digital camera can take, and the bigger you can enlarge them without losing the sharpness of the image. 3.1 megapixels and higher is usually considered sufficient for print-quality photos. Photos with a resolution of less than 3.1 megapixels are best viewed only on computers.</description><value>12.9 Megapixel</value></feature><feature><name>Image Resolutions</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>4288 x 2848</value><value>3216 x 2136</value><value>2144 x 1424</value></feature></featureGroup><featureGroup><name>Video</name><feature><name>Video Resolutions</name><description>Many digital cameras let you record short clips of highly compressed, low-resolution video, either as an MPEG movie or a Motion JPEG movie. This number shows the actual optimal size for a movie captured on your camera.</description><value>320 x 240</value><value>640 x 480 (VGA)</value><value>1280 x 720</value></feature><feature><name>Video Speed</name><value>24 fps</value></feature><feature><name>Video Format</name><value>AVI</value><value>Motion JPEG</value></feature></featureGroup><featureGroup><name>Exposure Control</name><feature><name>Aperture Range</name><description>The aperture range measures how much light is let into the camera when taking a photo. Low f-stop settings are best for low light photography while higher f-stops provide a greater depth of field.</description><value>f3.5/f5.6 (w/t)</value></feature><feature><name>Shutter Speed</name><description>The shutter speed of a camera depends on two variables: the size of the lens and the actual timing of the shutter, opening and closing. These two factors work as a team to control the amount of light that enters the camera. This is measured in fractions on a shutter speed dial which illustrate how long the shutter opens and closes in a set period of time. The term speed refers to how long the lens remains open. For example, a setting of 1/60 on a shutter speed dial means that the shutter opens and closes within one sixtieth of a second. Various shutter speeds can be used to manipulate the final result of the picture. Usually, a faster shutter speed is used to freeze the scene, for motion shots, while a slower speed is used to create more of an unfocused, abstract result.</description><value>30 - 1/4000 sec</value></feature><feature><name>White Balance</name><description>The white balance of a digital camera controls the color outcome of pictures. All light gives off a color temperature which the camera analyzes and internally adjusts, so that the colors of the picture are captured in their true form. Without the proper white balance, the color in a photo may contain an overabundance of blue, green or orange hues.</description><value>Auto</value><value>Manual</value><value>Daylight / Sunny (Preset)</value><value>Fluorescent (Preset)</value><value>Incandescent (Preset)</value><value>Shade (Preset)</value><value>Flash (Preset)</value></feature><feature><name>Frames Per Second</name><value>4.5 Frames</value></feature></featureGroup><featureGroup><name>Storage</name><feature><name>Memory Type</name><description>There are many types of memory / media for digital cameras, but most models are compatible with only one. The most common are CompactFlash and SmartMedia. Many other cameras use Memory Stick and some write the pictures directly onto mini-CDs or floppy disks. It is helpful to choose some sort of memory device that is easy to find in stores, in case you need to purchase extra.</description><value>SD Card</value><value>SDHC Card</value><value>Eye-Fi SD Card</value></feature><feature><name>Compression Modes</name><value/></feature><feature><name>Compression Type</name><description>Many cameras include different settings to control photo resolution. The resolution of the pictures you take affects their quality as well as the amount of memory they utilize. Higher resolution results in higher quality, but takes up more memory.</description><value>JPEG</value><value>Raw Image</value><value>DPOF</value><value>EXIF 2.21</value><value>DCF 2.0</value></feature><feature><name>File Size (High Res.)</name><value/></feature><feature><name>File Size (Low Res.)</name><value/></feature></featureGroup><featureGroup><name>Flash</name><feature><name>ISO Speeds</name><description>ISO stands for International Standards Organization. It denotes the rating of a film's sensitivity to light (based on an arithmetical progression). Though digital cameras don't use film, they have adopted the same rating system for describing the sensitivity of the camera's imaging sensor. Digital cameras often include a control for adjusting the ISO speed; some will adjust it automatically depending on the lighting conditions, adjusting it upwards as the available light dims. For exampe, ISO 200 film is twice as fast as ISO 100 film but only half as fast as ISO 400. The scale is identical to ASA (American Standards Association). Generally, with higher ISO speeds there is more noise.</description><value>100</value><value>200</value><value>3200</value><value>6400</value></feature><feature><name>Flash Type</name><value>Built-In &amp; External</value></feature><feature><name>Flash Functions</name><description>If the camera has a built-in flash, it might have several different flash functions, such as on/off or anti-redeye flash.</description><value>Auto Flash</value><value>Front Sync Flash</value><value>Rear Sync Flash</value><value>Fill-in Flash</value><value>Red-eye Reduction Flash</value><value>Slow Sync</value><value>Manual</value></feature></featureGroup><featureGroup><name>Viewfinder / Display</name><feature><name>Viewfinder</name><description>A viewfinder is the small square on the back of a camera that you look through to compose the scene. Some cameras have small screens on the back that act as viewfinders. Other cameras have small glass areas through which you can look out of the front of the camera.</description><value>Optical (Through-the-lens)</value></feature><feature><name>LCD Screen</name><description>LCD stands for "Liquid Crystal Display." This is the small screen on the back of a camera that digitally displays the same image you would see through the viewfinder. On many cameras you can also review the pictures stored in the camera's memory on the LCD Panel.</description><value>With LCD Screen</value></feature><feature><name>LCD Screen Size</name><value>3 in.</value></feature><feature><name>LCD Screen Resolution</name><value>920,000 pixels</value></feature><feature><name>LCD Protected Position</name><value>Without LCD Protected Position</value></feature></featureGroup><featureGroup><name>Interfaces</name><feature><name>Interface Type</name><description>The method by which your camera will communicate with your computer or other video device. Different methods enable you to download photos at varying speeds. Make sure the interface you want is also compatible with the computer you want to use it with.</description><value>USB 2.0</value><value>HDMI</value></feature><feature><name>Video Interface</name><value>Video Out</value></feature></featureGroup><featureGroup><name>Power Supply</name><feature><name>Battery Type</name><value>Rechargeable Li-Ion Battery</value></feature><feature><name>Battery Life</name><value>850 Images</value></feature></featureGroup><featureGroup><name>Included Features</name><feature><name>Self Timer</name><value>2 Sec.</value><value>5 Sec.</value><value>10 Sec.</value><value>20 Sec.</value></feature><feature><name>Built-in Microphone</name><value>With Built-in Microphone</value></feature><feature><name>Tripod Mount</name><value>With Tripod Mount</value></feature></featureGroup><featureGroup><name>System Requirements</name><feature><name>Operating System</name><value>Microsoft Windows XP</value><value>Microsoft Windows Vista</value></feature></featureGroup><featureGroup><name>Dimensions</name><feature><name>Width</name><value>5.2 in.</value></feature><feature><name>Depth</name><value>3 in.</value></feature><feature><name>Height</name><value>4.1 in.</value></feature><feature><name>Weight</name><value>2.3 lb.</value></feature></featureGroup><featureGroup><name>Miscellaneous</name><feature><name>Family Line</name><value>Nikon D</value></feature><feature><name>Included Accessories</name><value>Software</value><value>USB Cable</value><value>Battery Charger</value><value>Strap</value><value>AV Cable</value><value>Li-Ion Rechargable Battery</value></feature><feature><name>UPC</name><value>018208915705</value></feature><feature><name>Release Date</name><value>September, 2008</value></feature><feature><name>Product ID</name><value>70621646</value></feature></featureGroup></specifications><reviews matchedReviewCount="3" pageNumber="1" returnedReviewCount="3"><averageRating><overallRating>4.80</overallRating></averageRating><consumerReview><authorID>Bradman</authorID><postDate>2009-05-09T13:20:28.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Great semi-pro camera</summary><pros>Excellent camera that still has some auto features</pros><cons>Expensive</cons><bottomLine>Great camera with unique features (for now). Highly recommended.</bottomLine><reviewContent>My wife and I bought a Nikon D70 as our first "real" transition away from film (and we haven't looke</reviewContent><fullReviewURL>http://www.epinions.com/content_469829324420?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>dive4air</authorID><postDate>2008-10-26T17:23:47.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Very Nice and Different</summary><pros>Video mode, dynamic focus, D-lighting, sensor cleaner</pros><cons>tendency to over expose slightly</cons><bottomLine>Go buy it!</bottomLine><reviewContent>I just picked the kit up this month. First, let me say that I sold the kit lens because I already ha</reviewContent><fullReviewURL>http://www.epinions.com/content_449281494660?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>aloofyouth</authorID><postDate>2008-10-13T18:56:18.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Nikon D90 + kit lens... worth it? Hmm...</summary><pros>Like the D80 but incrementally better in many areas.</pros><cons>Pricey relative to D80. Is it worth it? Yes!</cons><bottomLine>Good camera but strongly consider the cheaper D80 if you can live with a worse LCD screen and somewhat worse ISO and AF performance.</bottomLine><reviewContent>I'm going to assume that anyone willing to spend over $1000 on a camera knows a few basic definition</reviewContent><fullReviewURL>http://www.epinions.com/content_447868604036?linkin_id=7000610</fullReviewURL></consumerReview><writeReviewURL>http://www.epinions.com/content/write.html/dt_product_id_~70621646?linkin_id=7000610</writeReviewURL></reviews></product><product id="77160878"><name>Nikon D90 Body Only Digital Camera</name><shortDescription>12.9 Megapixel, SLR Camera, 3 in. LCD Screen, With High Definition Video, Weight: 1.38 lb.</shortDescription><fullDescription>The D90 provides remarkable performance and operability, featuring Nikon’s exclusive Scene Recognition System that optimizes auto focus, auto exposure, i-TTL control and auto white balance milliseconds before the shutter is released. Live View mode allows shooting while confirming the subject on the large 3-in., approx. 920k-dot, high-density colour LCD. It offers three contrast-detect AF modes to allow photographers to focus on any point in the frame, enabling a greater variety of composition. In addition to wide and normal area AF, the D90 offers Face-priority AF in Live View mode for even sharper portraits. These are just some of the powerful features housed in a compact, comfortable-to-hold body, with intuitive controls. The D90 will satisfy the requirements of passionate photographers who demand superior image quality and want exciting photographic possibilities.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image></images><rating><reviewCount>3</reviewCount><rating>4.70</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.5.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D90-DX-Body-Only~linkin_id-7000610</reviewURL></rating><minPrice>800.00</minPrice><maxPrice>1000.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D90-DX-Body-Only~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D90-DX-Body-Only~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="12" pageNumber="1" returnedOfferCount="5"><offer featured="true" id="vuR0zuiqdywZYuWPV2psJw==" smartBuy="false" used="false"><name>Nikon D90 12.3MP Digital SLR Camera (Body Only)</name><description>12.3-megapixel DX-format CMOS imaging sensor Body only; lenses sold separately D-Movie Mode; Cinematic 24fps HD with sound 3-inch super-density 920,000-dot color LCD monitor Capture images to SD/SDHC memory cards (not included)</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="false" height="100" width="100"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Get free shipping on orders over $25!</storeNotes><basePrice currency="USD">999.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=66&amp;BEFID=7185&amp;code=51&amp;acode=51&amp;aon=%5E&amp;MerchantID=40085&amp;crawler_id=812191&amp;dealId=vuR0zuiqdywZYuWPV2psJw%3D%3D&amp;url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB001ET5U92%2Fref%3Dasc_df_B001ET5U92878088%3Fsmid%3DATVPDKIKX0DER%26tag%3Ddealtime-ce-feed-20%26linkCode%3Dasn%26creative%3D380341%26creativeASIN%3DB001ET5U92&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+12.3MP+Digital+SLR+Camera+%28Body+Only%29&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=999.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=1.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=77160878&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="40085" trusted="true"><name>Amazon</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/40085.gif</sourceURL></logo><ratingInfo><reviewCount>1638</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-40085~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="LaEqQTDbksHIQIWEC0HruQ==" smartBuy="false" used="false"><name>Nikon D90 12.3 MP Digital SLR Camera - Body Only - MSRP $999.99</name><description>Fusing 12.3-megapixel image quality and a cinematic 24fps D-Movie Mode, the Nikon D90 exceeds the demands of passionate photographers.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/4c/61/45/71515444626b73484951495745433048727551-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Free 2nd Day Shipping!</storeNotes><basePrice currency="USD">929.00</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=45&amp;BEFID=7185&amp;code=4&amp;acode=114&amp;aon=%5E&amp;MerchantID=448058&amp;crawler_id=448058&amp;dealId=LaEqQTDbksHIQIWEC0HruQ%3D%3D&amp;url=http%3A%2F%2Ftracking.searchmarketing.com%2Fclick.asp%3Faid%3D243815135&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+12.3+MP+Digital+SLR+Camera+-+Body+Only+-+MSRP+%24999.99&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=929.0&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=2.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=77160878&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="448058" trusted="true"><name>Dell</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/448058.gif</sourceURL></logo><ratingInfo><reviewCount>1481</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-448058~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="X9Mzq7nE3Bp7xGBgOhqXrw==" smartBuy="false" used="false"><name>Nikon D90 12.3mp Digital Slr Camera Body D-90 Usa</name><description>eBay offers you smart deals and the widest selection, ranging from the everyday basics to things that are as unique as yourself. With millions of items to choose from, great deals are always just a click away.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/58/39/4d/7a71376e4533427037784742674f6871587277-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/58/39/4d/7a71376e4533427037784742674f6871587277-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/58/39/4d/7a71376e4533427037784742674f6871587277-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/58/39/4d/7a71376e4533427037784742674f6871587277-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><basePrice currency="USD">914.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">19.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=519&amp;BEFID=7185&amp;code=557&amp;acode=599&amp;aon=%5E&amp;MerchantID=446528&amp;crawler_id=1911462&amp;dealId=X9Mzq7nE3Bp7xGBgOhqXrw%3D%3D&amp;url=http%3A%2F%2Frover.ebay.com%2Frover%2F1%2F711-57618-1854-0%2F2%3Fmpre%3Dhttp%253A%252F%252Fitemlistings.ebay.com%252Fsdcsrp%253Ffl%253D200371182384%2526product%253D%7Bquery%7D%2526sconstraints%253DIncludeSelector%25253DDetails%25252CSellerInfo%252526ItemType%25253DAllFixedPriceItemTypes%252526ItemSort%25253DBestMatch%2526xm%2526siteid%253D0%26kw%3D%7Bquery%7D%26query%3D%7Bquery%7D%26fitem%3D200371182384%26mt_id%3D570&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+12.3mp+Digital+Slr+Camera+Body+D-90+Usa&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=933.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=3.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=77160878&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="446528" trusted="true"><name>eBay</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/446528.gif</sourceURL></logo><ratingInfo><reviewCount>1166</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-446528~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="1mTGf7o9BEfN3BBLXvw6RA==" smartBuy="false" used="false"><name>D90 DX DSLR CAMERA BODY</name><description>Fusing 12.3 megapixel image quality and a cinematic 24fps D-Movie Mode, the Nikon D90 exceeds the demands of passionate photographers. Coupled with Nikon's EXPEED image processing technologies and NIKKOR optics, breathtaking image fidelity is assured. Combined with fast 0.15ms power-up and split-second 65ms shooting lag, dramatic action and decisive moments are captured easily. Effective 4-frequency, ultrasonic sensor cleaning frees image degrading dust particles from the sensor's optical low pass filter.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/31/6d/54/4766376f394245664e3342424c587677365241-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/31/6d/54/4766376f394245664e3342424c587677365241-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/31/6d/54/4766376f394245664e3342424c587677365241-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/31/6d/54/4766376f394245664e3342424c587677365241-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>FREE FEDEX 2-3 DAY DELIVERY</storeNotes><basePrice currency="USD">949.00</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=319&amp;BEFID=7185&amp;code=366&amp;acode=366&amp;aon=%5E&amp;MerchantID=9296&amp;crawler_id=811558&amp;dealId=1mTGf7o9BEfN3BBLXvw6RA%3D%3D&amp;url=http%3A%2F%2Fwww.pcnation.com%2Fweb%2Fdetails.asp%3Faffid%3D305%26item%3D2N145P&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=D90+DX+DSLR+CAMERA+BODY&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=949.0&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=4.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=77160878&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="9296" trusted="true"><name>PCNation</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/9296.gif</sourceURL></logo><ratingInfo><reviewCount>1327</reviewCount><rating>4.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_45.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-9296~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="WmPxISV73yv_MzoRfI4l3w==" smartBuy="false" used="false"><name>Nikon D90 DSLR Camera Body Only - 12.3 Megapixel, Cinematic 24fps, 3.0 LCD</name><description>The Nikon D90 DSLR Camera is a revolutionary breakthrough, the world's first D-SLR with HD movie lets you use interchangeable NIKKOR lenses.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/57/6d/50/78495356373379765f4d7a6f526649346c3377-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/57/6d/50/78495356373379765f4d7a6f526649346c3377-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/57/6d/50/78495356373379765f4d7a6f526649346c3377-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Order Today, Ships Today</storeNotes><basePrice currency="USD">999.99</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=703&amp;BEFID=7185&amp;code=750&amp;acode=750&amp;aon=%5E&amp;MerchantID=471680&amp;crawler_id=471680&amp;dealId=WmPxISV73yv_MzoRfI4l3w%3D%3D&amp;url=http%3A%2F%2Fwww.circuitcity.com%2Fapplications%2Fsearchtools%2Fitem-details.asp%3FEdpNo%3D4134001%26SRCCODE%3DCCDSHOP%26cm_mmc_o%3D2mHCjCmtB55bETCjCVqHCjCdwwp&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D90+DSLR+Camera+Body+Only+-+12.3+Megapixel%2C+Cinematic+24fps%2C++3.0+LCD&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=999.99&amp;crn=USD&amp;istrsmrc=0&amp;isathrsl=0&amp;AR=5.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=77160878&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="471680" trusted="false"><name>CircuitCity.com</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/471680.gif</sourceURL></logo><ratingInfo><reviewCount>793</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-471680~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer></offers><specifications><featureGroup><name>Product MPN</name><feature><name>MPN</name><value>25446</value></feature></featureGroup><featureGroup><name>Key Features</name><feature><name>Camera Type</name><description>There are several different types of digital cameras. Compact and Ultra-compact are light, pocket-sized cameras that are easy to carry, usually with a built-in lens. Standard point-and-shoot cameras are of medium size, usually come with a built-in lens, and have basic features that are useful for the casual photographer. SLR/Professional cameras are usually larger, but offer more advanced features and detachable lenses for the photography enthusiast or professional.</description><value>SLR/Professional</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value/></feature><feature><name>Resolution</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>12.9 Megapixel</value></feature><feature><name>Image Sensor Type</name><description>A CCD sensor will provide a sharper more precise image, but is generally more power consuming. CMOS sensors are generally more energy efficient and are creating better and better images as technology develops.</description><value>CMOS</value></feature><feature><name>Weight</name><value>1.38 lb.</value></feature></featureGroup><featureGroup><name>Lens</name><feature><name>Interchangeable Lens</name><description>Higher-end cameras may allow you to separate the camera body from the lens, allowing you to interchange lenses for different types of photography.</description><value>Interchangeable Lenses</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value/></feature><feature><name>35mm Zoom Lens</name><value/></feature><feature><name>Digital Zoom</name><description>Unlike optical zoom, digital zoom magnifies the pixels but not the actual image. The resulting image appears bigger, but is not as sharp as with an optical zoom.</description><value>Without Digital Zoom</value></feature><feature><name>Focus Type</name><value/></feature><feature><name>Focus Range</name><value/></feature><feature><name>Focal Length</name><description>The distance from the center of the lens to the image of an object at infinity. At same size, the distance from copy to image is four times the focal length of the lens. This also applies to lithographic process lens as well. A 35mm SLR camera has interchangeable lenses that can range in focal length from around 7 to 17mm which are usually fisheye, 17 to 35 are considered wide angle. 50mm is called the standard lens as it has the same equivalent focal length as the human eye. Anything longer is a telephoto lens. Usually expressed in millimeters, smaller focal lengths result in wider fields-of-view.</description><value/></feature></featureGroup><featureGroup><name>Image Quality</name><feature><name>Camera Resolution</name><description>Resolution is measured in megapixels. The higher the megapixels, the sharper and more detailed the pictures your digital camera can take, and the bigger you can enlarge them without losing the sharpness of the image. 3.1 megapixels and higher is usually considered sufficient for print-quality photos. Photos with a resolution of less than 3.1 megapixels are best viewed only on computers.</description><value>12.9 Megapixel</value></feature><feature><name>Image Resolutions</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>4288 x 2848</value><value>3216 x 2136</value><value>2144 x 1424</value></feature></featureGroup><featureGroup><name>Video</name><feature><name>Video Resolutions</name><description>Many digital cameras let you record short clips of highly compressed, low-resolution video, either as an MPEG movie or a Motion JPEG movie. This number shows the actual optimal size for a movie captured on your camera.</description><value>1280 x 720</value><value>320 x 216</value><value>640 x 424</value></feature><feature><name>Video Speed</name><value>24 fps</value></feature><feature><name>Video Format</name><value>AVI</value><value>HD (High Definition)</value></feature></featureGroup><featureGroup><name>Exposure Control</name><feature><name>Aperture Range</name><description>The aperture range measures how much light is let into the camera when taking a photo. Low f-stop settings are best for low light photography while higher f-stops provide a greater depth of field.</description><value/></feature><feature><name>Shutter Speed</name><description>The shutter speed of a camera depends on two variables: the size of the lens and the actual timing of the shutter, opening and closing. These two factors work as a team to control the amount of light that enters the camera. This is measured in fractions on a shutter speed dial which illustrate how long the shutter opens and closes in a set period of time. The term speed refers to how long the lens remains open. For example, a setting of 1/60 on a shutter speed dial means that the shutter opens and closes within one sixtieth of a second. Various shutter speeds can be used to manipulate the final result of the picture. Usually, a faster shutter speed is used to freeze the scene, for motion shots, while a slower speed is used to create more of an unfocused, abstract result.</description><value>30 - 1/4000 sec</value></feature><feature><name>White Balance</name><description>The white balance of a digital camera controls the color outcome of pictures. All light gives off a color temperature which the camera analyzes and internally adjusts, so that the colors of the picture are captured in their true form. Without the proper white balance, the color in a photo may contain an overabundance of blue, green or orange hues.</description><value>Auto</value><value>Fluorescent (Preset)</value><value>Incandescent (Preset)</value><value>Shade (Preset)</value><value>Sunset (Preset)</value><value>Flash (Preset)</value></feature><feature><name>Frames Per Second</name><value>4.5 Frames</value></feature></featureGroup><featureGroup><name>Storage</name><feature><name>Memory Type</name><description>There are many types of memory / media for digital cameras, but most models are compatible with only one. The most common are CompactFlash and SmartMedia. Many other cameras use Memory Stick and some write the pictures directly onto mini-CDs or floppy disks. It is helpful to choose some sort of memory device that is easy to find in stores, in case you need to purchase extra.</description><value>SD Card</value><value>SDHC Card</value></feature><feature><name>Compression Modes</name><value>Uncompressed</value></feature><feature><name>Compression Type</name><description>Many cameras include different settings to control photo resolution. The resolution of the pictures you take affects their quality as well as the amount of memory they utilize. Higher resolution results in higher quality, but takes up more memory.</description><value>JPEG</value><value>Raw Image</value><value>DPOF</value><value>EXIF 2.21</value><value>DCF 2.0</value></feature><feature><name>File Size (High Res.)</name><value/></feature><feature><name>File Size (Low Res.)</name><value/></feature></featureGroup><featureGroup><name>Flash</name><feature><name>ISO Speeds</name><description>ISO stands for International Standards Organization. It denotes the rating of a film's sensitivity to light (based on an arithmetical progression). Though digital cameras don't use film, they have adopted the same rating system for describing the sensitivity of the camera's imaging sensor. Digital cameras often include a control for adjusting the ISO speed; some will adjust it automatically depending on the lighting conditions, adjusting it upwards as the available light dims. For exampe, ISO 200 film is twice as fast as ISO 100 film but only half as fast as ISO 400. The scale is identical to ASA (American Standards Association). Generally, with higher ISO speeds there is more noise.</description><value>100</value><value>200</value><value>3200</value><value>6400</value></feature><feature><name>Flash Type</name><value>Built-In</value></feature><feature><name>Flash Functions</name><description>If the camera has a built-in flash, it might have several different flash functions, such as on/off or anti-redeye flash.</description><value>Front Sync Flash</value><value>Rear Sync Flash</value><value>Red-eye Reduction Flash</value><value>Slow Sync</value></feature></featureGroup><featureGroup><name>Viewfinder / Display</name><feature><name>Viewfinder</name><description>A viewfinder is the small square on the back of a camera that you look through to compose the scene. Some cameras have small screens on the back that act as viewfinders. Other cameras have small glass areas through which you can look out of the front of the camera.</description><value>Optical (Through-the-lens)</value></feature><feature><name>LCD Screen</name><description>LCD stands for "Liquid Crystal Display." This is the small screen on the back of a camera that digitally displays the same image you would see through the viewfinder. On many cameras you can also review the pictures stored in the camera's memory on the LCD Panel.</description><value>With LCD Screen</value></feature><feature><name>LCD Screen Size</name><value>3 in.</value></feature><feature><name>LCD Screen Resolution</name><value>920,000 pixels</value></feature><feature><name>LCD Protected Position</name><value>Without LCD Protected Position</value></feature></featureGroup><featureGroup><name>Interfaces</name><feature><name>Interface Type</name><description>The method by which your camera will communicate with your computer or other video device. Different methods enable you to download photos at varying speeds. Make sure the interface you want is also compatible with the computer you want to use it with.</description><value>USB 2.0</value></feature><feature><name>Video Interface</name><value>Video Out</value></feature></featureGroup><featureGroup><name>Power Supply</name><feature><name>Battery Type</name><value>Rechargeable Li-Ion Battery</value></feature><feature><name>Battery Life</name><value>850 Images</value></feature></featureGroup><featureGroup><name>Included Features</name><feature><name>Self Timer</name><value>2 Sec.</value><value>5 Sec.</value><value>10 Sec.</value><value>20 Sec.</value></feature><feature><name>Built-in Microphone</name><value>With Built-in Microphone</value></feature><feature><name>Tripod Mount</name><value>With Tripod Mount</value></feature></featureGroup><featureGroup><name>System Requirements</name><feature><name>Operating System</name><value>Apple Mac OS X</value><value>Microsoft Windows 2000</value><value>Microsoft Windows 98SE</value><value>Microsoft Windows ME</value><value>Microsoft Windows XP</value><value>Microsoft Windows Vista</value><value>Apple Mac OS X 10</value></feature></featureGroup><featureGroup><name>Dimensions</name><feature><name>Width</name><value>5.2 in.</value></feature><feature><name>Depth</name><value>3 in.</value></feature><feature><name>Height</name><value>4.1 in.</value></feature><feature><name>Weight</name><value>1.38 lb.</value></feature></featureGroup><featureGroup><name>Miscellaneous</name><feature><name>Family Line</name><value>Nikon D</value></feature><feature><name>Included Accessories</name><value>Software</value><value>USB Cable</value><value>Driver</value><value>Battery Charger</value><value>Strap</value><value>AV Cable</value><value>Li-Ion Rechargable Battery</value></feature><feature><name>UPC</name><value>689466104950</value></feature><feature><name>Release Date</name><value/></feature><feature><name>Product ID</name><value>77160878</value></feature></featureGroup></specifications><reviews matchedReviewCount="3" pageNumber="1" returnedReviewCount="3"><averageRating><overallRating>4.70</overallRating></averageRating><consumerReview><authorID>colonialpara</authorID><postDate>2009-07-09T06:27:46.000-08:00</postDate><rating><overallRating>4.00</overallRating></rating><summary>The Nikon D90: A Worthy Consumer Digital SLR</summary><pros>Beautiful images at less than TARP level pricing!</pros><cons>Less robust build quality.</cons><bottomLine>When you want beautiful pictures and the ability to use a variety of lenses, try the D90.</bottomLine><reviewContent>The Nikon D90 is just the latest in a lengthy and capable list of consumer digital SLR cameras intro</reviewContent><fullReviewURL>http://www.epinions.com/content_476815199876?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>rogerngaw</authorID><postDate>2009-06-05T19:02:19.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Best Allrounder?</summary><pros>Light, low noise, fast operations, HD video, price, compatible with most Nikon lenses, battery life.</pros><cons>Mediocre videos.</cons><bottomLine>If you don't need a full frame body and find that the D300 is too heavy, the D90 is the perfect compromise. It will certainly deliver excellent results.</bottomLine><reviewContent>Photography is often about compromises. No one can honestly say which camera is the BEST there is ou</reviewContent><fullReviewURL>http://www.epinions.com/content_472958275204?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>mtmra70</authorID><postDate>2009-01-06T09:08:58.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Great camera for a great price</summary><pros>Fairly low price point, records 720p video, large preview screen.</pros><cons>No auto focus when recording video and live view photo shooting is slow.</cons><bottomLine>This camera has plenty of the basics that are refreshed with the latest tech. Some say it is as good, if not better, than the D300.</bottomLine><reviewContent>I upgraded from my Nikon D70 to the D90 and let me tell you, I have no regrets. The second I started</reviewContent><fullReviewURL>http://www.epinions.com/content_456900382340?linkin_id=7000610</fullReviewURL></consumerReview><writeReviewURL>http://www.epinions.com/content/write.html/dt_product_id_~77160878?linkin_id=7000610</writeReviewURL></reviews></product><product id="56321218"><name>Nikon D60 Digital Camera with 18-55mm lens</name><shortDescription>10.75 Megapixel, SLR Camera, 2.5 in. LCD Screen, 3x Optical Zoom, With Video Capability, Weight: 1.06 lb.</shortDescription><fullDescription>The D60 is a high-performance DX format digital SLR with a 10.2 megapixel resolution. Easy to use and easy to handle, it is the perfect way to explore the magic of digital SLR photography.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image></images><rating><reviewCount>8</reviewCount><rating>4.70</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.5.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-Nikon-D60-SLR-Camera-Kit-18-55mm-Lens~linkin_id-7000610</reviewURL></rating><minPrice>547.00</minPrice><maxPrice>759.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-Nikon-D60-SLR-Camera-Kit-18-55mm-Lens~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-Nikon-D60-SLR-Camera-Kit-18-55mm-Lens~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="11" pageNumber="1" returnedOfferCount="5"><offer featured="true" id="Jqp5yNmgjct6a9cb22sbIA==" smartBuy="false" used="false"><name>Nikon D60 10.2MP Digital SLR Camera with 18-55mm f/3.5-5.6G AF-S DX VR Nikkor Zoom Lens</name><description>Extraordinary 10.2-megapixel DX-format Nikon picture quality Includes AF-S DX NIKKOR 18-55mm f/3.5-5.6G Vibration Reduction lens 2.5-inch LCD screen; horizontal and vertical orientation are detected automatically Continuous shooting at 3 fps; Active Dust Reduction System with Airflow Control Capture images to SD/SDHC memory cards (not included)</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="false" height="100" width="100"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Get free shipping on orders over $25!</storeNotes><basePrice currency="USD">599.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=66&amp;BEFID=7185&amp;code=51&amp;acode=51&amp;aon=%5E&amp;MerchantID=40085&amp;crawler_id=812191&amp;dealId=Jqp5yNmgjct6a9cb22sbIA%3D%3D&amp;url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB0012OGF6Q%2Fref%3Dasc_df_B0012OGF6Q878088%3Fsmid%3DATVPDKIKX0DER%26tag%3Ddealtime-ce-feed-20%26linkCode%3Dasn%26creative%3D380341%26creativeASIN%3DB0012OGF6Q&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D60+10.2MP+Digital+SLR+Camera+with+18-55mm+f%2F3.5-5.6G+AF-S+DX+VR+Nikkor+Zoom+Lens&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=599.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=1.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=56321218&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="40085" trusted="true"><name>Amazon</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/40085.gif</sourceURL></logo><ratingInfo><reviewCount>1638</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-40085~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="doIPXXO3jRNleQ4H4cUXPw==" smartBuy="false" used="false"><name>Nikon D60 DSLR with 18-55mm f/3.5-5.6G VR AF-S DX Nikkor Lens - MSRP $599.99 (25438)</name><description>Are you looking for a real digital SLR that's easy to use? Do you want mobility without sacrificing capability? Would you like simple operation and enough features to step forward creatively? If so, then get to know the Nikon D60. Now you can experience the best of both worlds: enjoy one-button simplicity with AUTO, or try many exciting levels of creative control. There is room for everyone to explore the thrill and magic of photography. Have fun, and don't worry - it's a Nikon.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/64/6f/49/5058584f336a524e6c65513448346355585077-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Free 2nd Day Shipping!</storeNotes><basePrice currency="USD">599.00</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=45&amp;BEFID=7185&amp;code=4&amp;acode=114&amp;aon=%5E&amp;MerchantID=448058&amp;crawler_id=448058&amp;dealId=doIPXXO3jRNleQ4H4cUXPw%3D%3D&amp;url=http%3A%2F%2Ftracking.searchmarketing.com%2Fclick.asp%3Faid%3D158294686&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D60+DSLR+with+18-55mm+f%2F3.5-5.6G+VR+AF-S+DX+Nikkor+Lens+-+MSRP+%24599.99+%2825438%29&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=599.0&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=2.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=56321218&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="448058" trusted="true"><name>Dell</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/448058.gif</sourceURL></logo><ratingInfo><reviewCount>1481</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-448058~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="rqeIueL5Zc8MrkJbwTviyw==" smartBuy="false" used="false"><name>Nikon 10.2-Megapixel Digital SLR Camera - Black</name><description>Harness the power of this digital SLR camera's host of advanced controls, scene modes and special effects to capture stunning high-resolution digital photos up to 10.2 megapixels. Burst mode lets you shoot continuously up to 3 fps for crisp fast-action shots. Learn more about the Nikon D60. (Flash demo)</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/72/71/65/4975654c355a63384d726b4a62775476697977-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Free Shipping!</storeNotes><basePrice currency="USD">549.99</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=139&amp;BEFID=7185&amp;code=219&amp;acode=219&amp;aon=%5E&amp;MerchantID=443156&amp;crawler_id=443156&amp;dealId=rqeIueL5Zc8MrkJbwTviyw%3D%3D&amp;url=http%3A%2F%2Fbestbuy.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1tcQRBpF3A4YRlOAgRKbWZfV1oPESJDKzAnXQgfH0AoJUEBDgBVPEpdEUcsKXxeW0RVFzA*HBMKFERwTjA0bF5ZRXldYmpYUVpEEm0ZNz0jSA9AQ187JwwXTRpFYw4WDxR0dGAdAgUBDWp0KyAmIxwVagBpB2FxFkJTOW9dVk0fTj0CEAwDC0FCU1QwNgpeCBpIAQNHU00mKidEVh8OHjwiAQAEF0RjGCAoOk5ZWVQWYQ%3D%3D%26nAID%3D13736960&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+10.2-Megapixel+Digital+SLR+Camera+-+Black&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=549.99&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=3.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=56321218&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="443156" trusted="true"><name>Best Buy®</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/443156.gif</sourceURL></logo><ratingInfo><reviewCount>8265</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-443156~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="Jb_L4mET6WvaatAvN0DN9g==" smartBuy="false" used="false"><name>Nikon D60 Digital Slr Outfit W/ Nikkor Dx 18-55mm Vr</name><description>eBay offers you smart deals and the widest selection, ranging from the everyday basics to things that are as unique as yourself. With millions of items to choose from, great deals are always just a click away.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/4a/62/5f/4c346d455436577661617441764e30444e3967-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/4a/62/5f/4c346d455436577661617441764e30444e3967-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><basePrice currency="USD">559.00</basePrice><tax checkSite="true"/><shippingCost currency="USD">14.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=519&amp;BEFID=7185&amp;code=557&amp;acode=599&amp;aon=%5E&amp;MerchantID=446528&amp;crawler_id=1911462&amp;dealId=Jb_L4mET6WvaatAvN0DN9g%3D%3D&amp;url=http%3A%2F%2Frover.ebay.com%2Frover%2F1%2F711-57618-1854-0%2F2%3Fmpre%3Dhttp%253A%252F%252Fitemlistings.ebay.com%252Fsdcsrp%253Ffl%253D200364049892%2526product%253D%7Bquery%7D%2526sconstraints%253DIncludeSelector%25253DDetails%25252CSellerInfo%252526ItemType%25253DAllFixedPriceItemTypes%252526ItemSort%25253DBestMatch%2526xm%2526siteid%253D0%26kw%3D%7Bquery%7D%26query%3D%7Bquery%7D%26fitem%3D200364049892%26mt_id%3D570&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D60+Digital+Slr+Outfit+W%2F+Nikkor+Dx+18-55mm+Vr&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=573.0&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=4.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=56321218&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="446528" trusted="true"><name>eBay</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/446528.gif</sourceURL></logo><ratingInfo><reviewCount>1166</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-446528~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="aCn2w2HIA4vIvtGDXNrHEg==" smartBuy="false" used="false"><name>Nikon D60 OUTFIT Digital Cameras. 10.2 megapixel digital SLR camera</name><description>Are you looking for a real digital SLR thats easy to use? Do you want mobility without sacrificing capability? Would you like simple operation and enough features to step forward creatively at your own pace? If so, then get to know the Nikon D60. The all-new D60, featuring a 10.2-megapixel Nikon DX format image sensor, coupled with a newly engineered Nikon image processing engine, offers photo enthusiasts of all levels new high-resolution advantages at a remarkably affordable price.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/61/43/6e/32773248494134764976744744584e72484567-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/61/43/6e/32773248494134764976744744584e72484567-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/61/43/6e/32773248494134764976744744584e72484567-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/61/43/6e/32773248494134764976744744584e72484567-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>New</storeNotes><basePrice currency="USD">599.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=71&amp;BEFID=7185&amp;code=109&amp;acode=23&amp;aon=%5E&amp;MerchantID=9080&amp;crawler_id=812075&amp;dealId=aCn2w2HIA4vIvtGDXNrHEg%3D%3D&amp;url=http%3A%2F%2Fvanns.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1dSRhdnEXp3Y1EABEwEay5eVlJLGCIPPzg7WUZAChhwJRgURQVAMFFXEUcsKXxeWl9AFyw3HRUHFlVxTTchPgJUVVFNKiAKEERHGGsJenFqHgIfX1k0PQFOD0URc1BRS0IqMGxbbVMNZjc9HxMCHUZ4VzEnMEJWVQ1VNjswXwgfSDtRNy03AgwWU0cxMQAHDk4dPVNNXE8qIHwT%26nAID%3D13736960&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D60+OUTFIT+Digital+Cameras.+10.2+megapixel+digital+SLR+camera&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=599.95&amp;crn=USD&amp;istrsmrc=0&amp;isathrsl=0&amp;AR=5.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=11&amp;NMS=11&amp;MRS=11&amp;PD=56321218&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="9080" trusted="false"><name>Vanns.com</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/9080.gif</sourceURL></logo><ratingInfo><reviewCount>546</reviewCount><rating>4.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_45.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-9080~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer></offers><specifications><featureGroup><name>Product MPN</name><feature><name>MPN</name><value>25436</value></feature></featureGroup><featureGroup><name>Key Features</name><feature><name>Camera Type</name><description>There are several different types of digital cameras. Compact and Ultra-compact are light, pocket-sized cameras that are easy to carry, usually with a built-in lens. Standard point-and-shoot cameras are of medium size, usually come with a built-in lens, and have basic features that are useful for the casual photographer. SLR/Professional cameras are usually larger, but offer more advanced features and detachable lenses for the photography enthusiast or professional.</description><value>SLR/Professional</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value>3x</value></feature><feature><name>Resolution</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>10.75 Megapixel</value></feature><feature><name>Image Sensor Type</name><description>A CCD sensor will provide a sharper more precise image, but is generally more power consuming. CMOS sensors are generally more energy efficient and are creating better and better images as technology develops.</description><value>CCD</value></feature><feature><name>Weight</name><value>1.06 lb.</value></feature></featureGroup><featureGroup><name>Lens</name><feature><name>Interchangeable Lens</name><description>Higher-end cameras may allow you to separate the camera body from the lens, allowing you to interchange lenses for different types of photography.</description><value>Interchangeable Lenses</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value>3x</value></feature><feature><name>35mm Zoom Lens</name><value>27 - 82.5 mm</value></feature><feature><name>Digital Zoom</name><description>Unlike optical zoom, digital zoom magnifies the pixels but not the actual image. The resulting image appears bigger, but is not as sharp as with an optical zoom.</description><value>Without Digital Zoom</value></feature><feature><name>Focus Type</name><value>Autofocus &amp; Manual Focus</value></feature><feature><name>Focus Range</name><value>10.8 in. (w)</value></feature><feature><name>Focal Length</name><description>The distance from the center of the lens to the image of an object at infinity. At same size, the distance from copy to image is four times the focal length of the lens. This also applies to lithographic process lens as well. A 35mm SLR camera has interchangeable lenses that can range in focal length from around 7 to 17mm which are usually fisheye, 17 to 35 are considered wide angle. 50mm is called the standard lens as it has the same equivalent focal length as the human eye. Anything longer is a telephoto lens. Usually expressed in millimeters, smaller focal lengths result in wider fields-of-view.</description><value>18 - 55 mm</value></feature></featureGroup><featureGroup><name>Image Quality</name><feature><name>Camera Resolution</name><description>Resolution is measured in megapixels. The higher the megapixels, the sharper and more detailed the pictures your digital camera can take, and the bigger you can enlarge them without losing the sharpness of the image. 3.1 megapixels and higher is usually considered sufficient for print-quality photos. Photos with a resolution of less than 3.1 megapixels are best viewed only on computers.</description><value>10.75 Megapixel</value></feature><feature><name>Image Resolutions</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>3872 x 2592</value><value>2896 x 1944</value><value>1936 x 1296</value></feature></featureGroup><featureGroup><name>Video</name><feature><name>Video Resolutions</name><description>Many digital cameras let you record short clips of highly compressed, low-resolution video, either as an MPEG movie or a Motion JPEG movie. This number shows the actual optimal size for a movie captured on your camera.</description><value/></feature><feature><name>Video Speed</name><value/></feature><feature><name>Video Format</name><value>AVI</value></feature></featureGroup><featureGroup><name>Exposure Control</name><feature><name>Aperture Range</name><description>The aperture range measures how much light is let into the camera when taking a photo. Low f-stop settings are best for low light photography while higher f-stops provide a greater depth of field.</description><value>f22/f36 (w/t) - f3.5/f5.6 (w/t)</value></feature><feature><name>Shutter Speed</name><description>The shutter speed of a camera depends on two variables: the size of the lens and the actual timing of the shutter, opening and closing. These two factors work as a team to control the amount of light that enters the camera. This is measured in fractions on a shutter speed dial which illustrate how long the shutter opens and closes in a set period of time. The term speed refers to how long the lens remains open. For example, a setting of 1/60 on a shutter speed dial means that the shutter opens and closes within one sixtieth of a second. Various shutter speeds can be used to manipulate the final result of the picture. Usually, a faster shutter speed is used to freeze the scene, for motion shots, while a slower speed is used to create more of an unfocused, abstract result.</description><value>30 - 1/4000 sec</value></feature><feature><name>White Balance</name><description>The white balance of a digital camera controls the color outcome of pictures. All light gives off a color temperature which the camera analyzes and internally adjusts, so that the colors of the picture are captured in their true form. Without the proper white balance, the color in a photo may contain an overabundance of blue, green or orange hues.</description><value>Daylight / Sunny (Preset)</value><value>Fluorescent (Preset)</value><value>Incandescent (Preset)</value><value>Shade (Preset)</value><value>Flash (Preset)</value><value>Colour Temperature Adjust</value></feature><feature><name>Frames Per Second</name><value>3 Frames</value></feature></featureGroup><featureGroup><name>Storage</name><feature><name>Memory Type</name><description>There are many types of memory / media for digital cameras, but most models are compatible with only one. The most common are CompactFlash and SmartMedia. Many other cameras use Memory Stick and some write the pictures directly onto mini-CDs or floppy disks. It is helpful to choose some sort of memory device that is easy to find in stores, in case you need to purchase extra.</description><value>Multimedia Card</value><value>SD Card</value><value>SDHC Card</value></feature><feature><name>Compression Modes</name><value>Fine</value><value>Normal</value><value>Uncompressed</value><value>Basic</value></feature><feature><name>Compression Type</name><description>Many cameras include different settings to control photo resolution. The resolution of the pictures you take affects their quality as well as the amount of memory they utilize. Higher resolution results in higher quality, but takes up more memory.</description><value>JPEG</value><value>Raw Image</value><value>DPOF</value><value>EXIF 2.21</value><value>DCF 2.0</value></feature><feature><name>File Size (High Res.)</name><value>4.8 MB (27 images on 128MB card)</value></feature><feature><name>File Size (Low Res.)</name><value>0.3 MB (about 427 images on 128MB card)</value></feature></featureGroup><featureGroup><name>Flash</name><feature><name>ISO Speeds</name><description>ISO stands for International Standards Organization. It denotes the rating of a film's sensitivity to light (based on an arithmetical progression). Though digital cameras don't use film, they have adopted the same rating system for describing the sensitivity of the camera's imaging sensor. Digital cameras often include a control for adjusting the ISO speed; some will adjust it automatically depending on the lighting conditions, adjusting it upwards as the available light dims. For exampe, ISO 200 film is twice as fast as ISO 100 film but only half as fast as ISO 400. The scale is identical to ASA (American Standards Association). Generally, with higher ISO speeds there is more noise.</description><value>100</value><value>200</value><value>400</value><value>800</value><value>1600</value><value>3200</value></feature><feature><name>Flash Type</name><value>Built-In &amp; External</value></feature><feature><name>Flash Functions</name><description>If the camera has a built-in flash, it might have several different flash functions, such as on/off or anti-redeye flash.</description><value>Flash Off</value><value>Auto Flash</value><value>Front Sync Flash</value><value>Rear Sync Flash</value><value>Fill-in Flash</value><value>Red-eye Reduction Flash</value><value>Slow Sync</value></feature></featureGroup><featureGroup><name>Viewfinder / Display</name><feature><name>Viewfinder</name><description>A viewfinder is the small square on the back of a camera that you look through to compose the scene. Some cameras have small screens on the back that act as viewfinders. Other cameras have small glass areas through which you can look out of the front of the camera.</description><value>Optical</value></feature><feature><name>LCD Screen</name><description>LCD stands for "Liquid Crystal Display." This is the small screen on the back of a camera that digitally displays the same image you would see through the viewfinder. On many cameras you can also review the pictures stored in the camera's memory on the LCD Panel.</description><value>With LCD Screen</value></feature><feature><name>LCD Screen Size</name><value>2.5 in.</value></feature><feature><name>LCD Screen Resolution</name><value>230,000 pixels</value></feature><feature><name>LCD Protected Position</name><value>Without LCD Protected Position</value></feature></featureGroup><featureGroup><name>Interfaces</name><feature><name>Interface Type</name><description>The method by which your camera will communicate with your computer or other video device. Different methods enable you to download photos at varying speeds. Make sure the interface you want is also compatible with the computer you want to use it with.</description><value>USB 2.0</value></feature><feature><name>Video Interface</name><value>Video Out</value></feature></featureGroup><featureGroup><name>Power Supply</name><feature><name>Battery Type</name><value>Rechargeable Li-Ion Battery</value></feature><feature><name>Battery Life</name><value>500 Images</value></feature></featureGroup><featureGroup><name>Included Features</name><feature><name>Self Timer</name><value>2 Sec.</value><value>5 Sec.</value><value>10 Sec.</value><value>20 Sec.</value></feature><feature><name>Built-in Microphone</name><value>Without Built-in Microphone</value></feature><feature><name>Tripod Mount</name><value>With Tripod Mount</value></feature></featureGroup><featureGroup><name>System Requirements</name><feature><name>Operating System</name><value>Apple Mac OS X</value><value>Microsoft Windows XP Home Edition</value><value>Microsoft Windows XP Professional</value><value>Microsoft Windows Vista</value><value>Microsoft Windows 2000 Professional</value></feature></featureGroup><featureGroup><name>Dimensions</name><feature><name>Width</name><value>5 in.</value></feature><feature><name>Depth</name><value>2.5 in.</value></feature><feature><name>Height</name><value>3.7 in.</value></feature><feature><name>Weight</name><value>1.06 lb.</value></feature></featureGroup><featureGroup><name>Miscellaneous</name><feature><name>Family Line</name><value>Nikon D</value></feature><feature><name>Included Accessories</name><value>Software</value><value>USB Cable</value><value>Lithium Battery</value><value>Strap</value></feature><feature><name>UPC</name><value>718122226320</value></feature><feature><name>Release Date</name><value>February, 2008</value></feature><feature><name>Product ID</name><value>56321218</value></feature></featureGroup></specifications><reviews matchedReviewCount="8" pageNumber="1" returnedReviewCount="5"><averageRating><overallRating>4.70</overallRating></averageRating><consumerReview><authorID>coreymac</authorID><postDate>2009-07-12T13:08:48.000-08:00</postDate><rating><overallRating>1.00</overallRating></rating><summary>I love this camera! It is so easy to use and takes great pictures!</summary><pros>The D60 is a great camera for people who love photography and also need simplicity.</pros><cons>&amp;nbsp;Nikon&amp;nbsp;could incorporate some&amp;nbsp;more creative features&amp;nbsp;on the D60.</cons><reviewContent>I have used the D40 for several years now and the d60 is even better! I love this camera. It is grea</reviewContent><fullReviewURL>http://www.epinions.com/content_476784463492?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>amandaspatrick</authorID><postDate>2009-03-13T00:10:39.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Nikon D60</summary><pros>Easy to use for beginners, Light weight,</pros><cons>Wish i would have came with a better zoom lenses.</cons><bottomLine>I think that the D60 is a great SRL for beginners and Professionals. The camera is very user friendly!</bottomLine><reviewContent>I bought the Nikon D60 Gold Edition with the 18-50 lens. And absolutely love it! I cannot get over h</reviewContent><fullReviewURL>http://www.epinions.com/content_463628308100?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>micmal</authorID><postDate>2009-01-19T07:51:13.000-08:00</postDate><rating><overallRating>4.00</overallRating></rating><summary>Good camera </summary><pros>Enough cheap, many menus,</pros><cons>can't use old lens.</cons><reviewContent>I've used this camera for a month and it is easy to use and to learn all of its </reviewContent><fullReviewURL>http://www.epinions.com/content_458288893572?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>knuffsaid</authorID><postDate>2008-11-02T06:09:49.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>Outstanding SLR camera</summary><pros>It's a Nikon, outstanding quality, easy to learn and use.</pros><cons>Like any SLR, it's a little bulky for light travel.</cons><bottomLine>Outstanding camera.&amp;nbsp; You cannot go wrong with this camera.</bottomLine><reviewContent>My wife purchased the Nikon D60 for my birthday this year.&amp;nbsp; I'll admit, I was new to the whole </reviewContent><fullReviewURL>http://www.epinions.com/content_450018840196?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>aplmac</authorID><postDate>2008-10-11T14:40:44.000-08:00</postDate><rating><overallRating>5.00</overallRating></rating><summary>It's a Super DSLR</summary><pros>Smaller body size. &lt;br&gt;18-55 mm. kit lens is better than you'd think.&lt;br&gt;&lt;i&gt;Excellent viewfinder picture quality.&lt;/i&gt;</pros><cons>A bit pricey, but look what you get!&lt;br&gt;No lens hood or SD card supplied</cons><bottomLine>After many years without an SLR, &lt;b&gt;Nikon still rocks!&lt;br /&gt;&lt;/b&gt;I &lt;i&gt;love&lt;/i&gt; my D60. Buy this camera without worries!</bottomLine><reviewContent>Yes I agree...Nikon's new D60 makes a great "First Time DSLR"I've owned SLR's in the past (in a prev</reviewContent><fullReviewURL>http://www.epinions.com/content_447628283524?linkin_id=7000610</fullReviewURL></consumerReview><writeReviewURL>http://www.epinions.com/content/write.html/dt_product_id_~56321218?linkin_id=7000610</writeReviewURL></reviews></product><product id="37724181"><name>Nikon D40 Digital Camera with 18-55mm lens</name><shortDescription>6.24 Megapixel, SLR Camera, 2.5 in. LCD Screen, 3x Optical Zoom, Weight: 1.06 lb.</shortDescription><fullDescription>Great pictures used to require complicated and cumbersome equipment along with years of experience. Not any more. The D40 is compact, lightweight and designed specifically for ease of use, yet contains top-quality, high-performance technologies that you expect from a Nikon digital SLR. And with world-famous Nikkor lenses, you know you have a sharp and reliable optical performance. All in a camera light enough to carry with you everywhere. Beautiful photography has never been easier.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image></images><rating><reviewCount>101</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610</reviewURL></rating><minPrice>375.00</minPrice><maxPrice>600.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="12" pageNumber="1" returnedOfferCount="5"><offer featured="false" id="60zn07lXSn3jU_Y1gTjf-g==" smartBuy="false" used="false"><name>Nikon D3000 10MP Digital SLR Camera with 18-55mm f/3.5-5.6G AF-S DX VR Nikkor Zoom Lens</name><description>10.2-megapixel DX-format imaging sensor for prints up to 20 x 30 inches Includes 3x 18-55mm Zoom-Nikkor VR Image Stabilization lens Nikon EXPEED image processing; in-camera image editing and Active D-Lighting 3.0-inch color LCD screen; 170-degree wide-angle viewing Capture images to SD/SDHC memory cards (not included)</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/36/30/7a/6e30376c58536e336a555f593167546a662d67-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=1</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Get free shipping on orders over $25!</storeNotes><basePrice currency="USD">599.95</basePrice><tax checkSite="true"/><shippingCost checkSite="true"/><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=66&amp;BEFID=7185&amp;code=51&amp;acode=51&amp;aon=%5E&amp;MerchantID=40085&amp;crawler_id=812191&amp;dealId=60zn07lXSn3jU_Y1gTjf-g%3D%3D&amp;url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB002JCSV5I%2Fref%3Dasc_df_B002JCSV5I874542%3Fsmid%3DATVPDKIKX0DER%26tag%3Ddealtime-ce-feed-20%26linkCode%3Dasn%26creative%3D380341%26creativeASIN%3DB002JCSV5I&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D3000+10MP+Digital+SLR+Camera+with+18-55mm+f%2F3.5-5.6G+AF-S+DX+VR+Nikkor+Zoom+Lens&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=599.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=1.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=37724181&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="40085" trusted="true"><name>Amazon</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/40085.gif</sourceURL></logo><ratingInfo><reviewCount>1638</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-40085~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="tZSXXCzkufUICcTcUaL6pw==" smartBuy="false" used="false"><name>Nikon Nikon D40 DSLR with 18-55mm f/3.5-5.6G ED II AF-S DX Zoom Lens - MSRP: $499.99</name><description>Compact and lightweight, the D40 Digital SLR Camera from Nikon™ makes high-performance digital SLR photography easy and convenient. From its inviting body contours to its easily accessible controls, this is a camera that makes picture taking satisfying and fun. The D40 delivers vivid color and sharp detail with 6.1 MP Nikon DX Format CCD Image Sensor. Large 2.5-inch LCD monitor with 3 colorful display options makes playback images easy to see with image preview at up to 19 times magnification and has large type fonts and easy-to-view menus. Versatile in-camera editing features like D-Lighting, Red-Eye Correction, Image Trimming, Image Overlay, Monochrome along with Skylight, Warm Tone and Color Balance filter effects provide high degree of creative freedom without the need for a computer. Fast Startup with Instant Shutter Response and rapid-action shooting at up to 2.5 fps makes it easy to freeze special moments instantly. The assist images help you select the appropriate settings for various camera feat..</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/74/5a/53/5858437a6b756655494363546355614c367077-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="200" width="200"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=2</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Free 2nd Day Shipping!</storeNotes><basePrice currency="USD">499.00</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=45&amp;BEFID=7185&amp;code=4&amp;acode=4&amp;aon=%5E&amp;MerchantID=448058&amp;crawler_id=448058&amp;dealId=tZSXXCzkufUICcTcUaL6pw%3D%3D&amp;url=http%3A%2F%2Ftracking.searchmarketing.com%2Fclick.asp%3Faid%3D89549909&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+Nikon+D40+DSLR+with+18-55mm+f%2F3.5-5.6G+ED+II+AF-S+DX+Zoom+Lens+-+MSRP%3A+%24499.99&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=499.0&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=2.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=37724181&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="448058" trusted="true"><name>Dell</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/448058.gif</sourceURL></logo><ratingInfo><reviewCount>1481</reviewCount><rating>3.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_35.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-448058~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="false" id="NRBGa44FhWTvuXVQ-xcRbw==" smartBuy="false" used="false"><name>Nikon D40 6.1mp Digital Slr Camera 18-55mm Lens</name><description>eBay offers you smart deals and the widest selection, ranging from the everyday basics to things that are as unique as yourself. With millions of items to choose from, great deals are always just a click away.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/4e/52/42/476134344668575476755856512d7863526277-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/4e/52/42/476134344668575476755856512d7863526277-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/4e/52/42/476134344668575476755856512d7863526277-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/4e/52/42/476134344668575476755856512d7863526277-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=3</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><basePrice currency="USD">404.99</basePrice><tax checkSite="true"/><shippingCost checkSite="true"/><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=519&amp;BEFID=7185&amp;code=557&amp;acode=557&amp;aon=%5E&amp;MerchantID=446528&amp;crawler_id=1911462&amp;dealId=NRBGa44FhWTvuXVQ-xcRbw%3D%3D&amp;url=http%3A%2F%2Frover.ebay.com%2Frover%2F1%2F711-57618-1854-0%2F2%3Fmpre%3Dhttp%253A%252F%252Fitemlistings.ebay.com%252Fsdcsrp%253Ffl%253D320410000641%2526product%253D%7Bquery%7D%2526sconstraints%253DIncludeSelector%25253DDetails%25252CSellerInfo%252526ItemType%25253DAllFixedPriceItemTypes%252526ItemSort%25253DBestMatch%2526xm%2526siteid%253D0%26kw%3D%7Bquery%7D%26query%3D%7Bquery%7D%26fitem%3D320410000641%26mt_id%3D570&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D40+6.1mp+Digital+Slr+Camera++18-55mm+Lens&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=404.99&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=3.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=37724181&amp;brnId=14305&amp;lnkId=&amp;IsFtr=0&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="446528" trusted="true"><name>eBay</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/446528.gif</sourceURL></logo><ratingInfo><reviewCount>1166</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-446528~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="MhJSVBcMcY2C706bSK4oUQ==" smartBuy="false" used="false"><name>Nikon D40 Digital Cameras. 6.1 Megapixel Digital SLR Camera With 18-55 mm Lens</name><description>Nikons smallest, easiest-to-use digital single-lens reflex camera ever--thats the 6.1 Megapixel D40. With inviting body contours, easily accessible controls, and weighing just over one pound, youll want to take this camera where ever you go. Included is a high quality 3x AF-S DX Zoom-Nikkor 18-55 mm f/3.5-5.6G ED lens, and the D40 offers seamless compatibility with other AF Nikkor lenses for superb color reproduction, razor-sharp image clarity, and fast/accurate autofocus performance.</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/4d/68/4a/535642634d6359324337303662534b346f5551-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/4d/68/4a/535642634d6359324337303662534b346f5551-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/di/4d/68/4a/535642634d6359324337303662534b346f5551-300x300-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/di/4d/68/4a/535642634d6359324337303662534b346f5551-400x400-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=4</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>New</storeNotes><basePrice currency="USD">499.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=71&amp;BEFID=7185&amp;code=109&amp;acode=109&amp;aon=%5E&amp;MerchantID=9080&amp;crawler_id=812075&amp;dealId=MhJSVBcMcY2C706bSK4oUQ%3D%3D&amp;url=http%3A%2F%2Fvanns.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1dSRhhtHHR8ZlEABEwEay5eVlJLGCIPPzg7WUZAChhwJRgURQVAMFFXEUcsKXxeWl9AFyw3HRUHFlVxTTchPgJUVVFNKiAKEERHGGsGcHxkFQcfX1k0PQFOD0cRYUl7XBkQLDxdQlleUnkhHQAIHEU7GSAtOnIOU1xfOjwbCg9cH3hcMyowQlZVDQs8PgYAABpFcQE%3D%26nAID%3D13736960&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D40+Digital+Cameras.+6.1+Megapixel+Digital+SLR+Camera+With+18-55+mm+Lens&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=499.95&amp;crn=USD&amp;istrsmrc=0&amp;isathrsl=0&amp;AR=4.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=37724181&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="9080" trusted="false"><name>Vanns.com</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/9080.gif</sourceURL></logo><ratingInfo><reviewCount>546</reviewCount><rating>4.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_45.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-9080~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer><offer featured="true" id="fz7mfLhefoJji2EU9tp-BA==" smartBuy="false" used="false"><name>Nikon D40 6.1 Megapixel Digital SLR Camera 3X Zoom Kit Outfit, with 18-55mm f/3.5-5.6G ED II AF-S DX Zoom Nikkor Lens - Refurbished by Nikon U.S.A.</name><description>NIKON'S NEW D40 DIGITAL SLR CAMERA IS THE SMALLEST AND EASIEST-TO-USE NIKON D-SLR EVER D40 Inherits Incredible Picture Quality from Nikon's Photographic Expertise, Making it Easy for Everyone to Take Breathtaking Pictures Features an All-New, Visually Intuitive Interface, In-Camera Editing and Built-In Help Nikon designed the D40 as an ultra-compact, lightweight, 6.1-effective megapixel digital SLR camera with simplified new features, exceptional handling speed, and a redesigned, visually-intuitive menu system that brings digital SLR cameras to a whole new level of simplicity. The D40 packs in an incredible range of features and technologies, but even those using a digital SLR camera for the first time willbe thrilled with beautiful pictures with vibrant colors, stunning sharpness and outstanding detail. And these same customers will beamazed at just how easy it is to take truly better pictures with the new Nikon D40 The Nikon D40 is ready to shoot virtually the instant it is turned on and with the ...</description><categoryId>7185</categoryId><manufacturer>Nikon</manufacturer><imageList><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/di/66/7a/37/6d664c6865666f4a6a693245553974702d4241-100x100-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/di/66/7a/37/6d664c6865666f4a6a693245553974702d4241-200x200-0-0.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="300" width="300"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image><image available="false" height="400" width="400"><sourceURL>http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=w2.8817498383328ac21657&amp;a=1&amp;c=1&amp;l=7000610&amp;t=090810232437&amp;r=5</sourceURL></image></imageList><stockStatus>in-stock</stockStatus><storeNotes>Refurbished Model</storeNotes><basePrice currency="USD">374.95</basePrice><tax checkSite="true"/><shippingCost currency="USD">0.00</shippingCost><totalPrice checkSite="true"/><offerURL>http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=400&amp;BEFID=7185&amp;code=443&amp;acode=443&amp;aon=%5E&amp;MerchantID=9391&amp;crawler_id=7009391&amp;dealId=fz7mfLhefoJji2EU9tp-BA%3D%3D&amp;url=http%3A%2F%2Fwww.adorama.com%2Frefby.tpl%3Frefby%3Ddealtime%26sku%3DINKD40KR&amp;linkin_id=7000610&amp;searchID=w2.8817498383328ac21657&amp;prjID=ds&amp;DealName=Nikon+D40+6.1+Megapixel+Digital+SLR+Camera+3X+Zoom+Kit+Outfit%2C+with+18-55mm+f%2F3.5-5.6G+ED+II+AF-S+DX+Zoom+Nikkor+Lens+-+Refurbished+by+Nikon+U.S.A.&amp;HasLink=yes&amp;frameId=0&amp;category=4&amp;CM=&amp;WL=&amp;dlprc=374.95&amp;crn=USD&amp;istrsmrc=1&amp;isathrsl=0&amp;AR=5.0&amp;RR=1&amp;NG=10&amp;GR=0&amp;ND=&amp;NDP=5&amp;PN=1&amp;PT=0&amp;ST=0&amp;DB=sdcprod&amp;MT=wcb-pmt3-2&amp;MN=MT&amp;FPT=DSP&amp;NDS=12&amp;NMS=12&amp;MRS=12&amp;PD=37724181&amp;brnId=14305&amp;lnkId=&amp;IsFtr=1&amp;IsSmart=0&amp;CT=6&amp;PgVwID=&amp;DMT=1000&amp;VK=&amp;op=</offerURL><store authorizedReseller="false" id="9391" trusted="true"><name>Adorama</name><logo available="false" height="31" width="88"><sourceURL>http://img.shopping.com/cctool/merch_logos/9391.gif</sourceURL></logo><ratingInfo><reviewCount>6187</reviewCount><rating>4.50</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/mr/sdc_checks_45.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xMR-null~MRD-9391~S-1~linkin_id-7000610</reviewURL></ratingInfo><countryFlag height="11" width="18"><sourceURL>http://img.shopping.com/sc/glb/flag/US.gif</sourceURL><countryCode>US</countryCode></countryFlag></store></offer></offers><specifications><featureGroup><name>Product MPN</name><feature><name>MPN</name><value>SLR1176</value></feature></featureGroup><featureGroup><name>Key Features</name><feature><name>Camera Type</name><description>There are several different types of digital cameras. Compact and Ultra-compact are light, pocket-sized cameras that are easy to carry, usually with a built-in lens. Standard point-and-shoot cameras are of medium size, usually come with a built-in lens, and have basic features that are useful for the casual photographer. SLR/Professional cameras are usually larger, but offer more advanced features and detachable lenses for the photography enthusiast or professional.</description><value>SLR/Professional</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value>3x</value></feature><feature><name>Resolution</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>6.24 Megapixel</value></feature><feature><name>Image Sensor Type</name><description>A CCD sensor will provide a sharper more precise image, but is generally more power consuming. CMOS sensors are generally more energy efficient and are creating better and better images as technology develops.</description><value>CCD</value></feature><feature><name>Weight</name><value>1.06 lb.</value></feature></featureGroup><featureGroup><name>Lens</name><feature><name>Interchangeable Lens</name><description>Higher-end cameras may allow you to separate the camera body from the lens, allowing you to interchange lenses for different types of photography.</description><value>Interchangeable Lenses</value></feature><feature><name>Optical Zoom</name><description>The optical zoom ratio of a digital camera measures how much the lens can actually zoom in to make subjects appear closer. Be careful to not confuse optical zoom with digital zoom. Optical zoom actually enlarges a picture while keeping the resolution and sharpness of the picture high.</description><value>3x</value></feature><feature><name>35mm Zoom Lens</name><value>18 - 55 mm</value></feature><feature><name>Digital Zoom</name><description>Unlike optical zoom, digital zoom magnifies the pixels but not the actual image. The resulting image appears bigger, but is not as sharp as with an optical zoom.</description><value/></feature><feature><name>Focus Type</name><value>Autofocus &amp; Manual Focus</value></feature><feature><name>Focus Range</name><value/></feature><feature><name>Focal Length</name><description>The distance from the center of the lens to the image of an object at infinity. At same size, the distance from copy to image is four times the focal length of the lens. This also applies to lithographic process lens as well. A 35mm SLR camera has interchangeable lenses that can range in focal length from around 7 to 17mm which are usually fisheye, 17 to 35 are considered wide angle. 50mm is called the standard lens as it has the same equivalent focal length as the human eye. Anything longer is a telephoto lens. Usually expressed in millimeters, smaller focal lengths result in wider fields-of-view.</description><value/></feature></featureGroup><featureGroup><name>Image Quality</name><feature><name>Camera Resolution</name><description>Resolution is measured in megapixels. The higher the megapixels, the sharper and more detailed the pictures your digital camera can take, and the bigger you can enlarge them without losing the sharpness of the image. 3.1 megapixels and higher is usually considered sufficient for print-quality photos. Photos with a resolution of less than 3.1 megapixels are best viewed only on computers.</description><value>6.24 Megapixel</value></feature><feature><name>Image Resolutions</name><description>The sensor in a digital camera is composed of pixels, which are tiny light-sensitive squares. The sensors in most cameras today are made up of millions of pixels, each one registering the brightness of the light striking it as the photo is taken. A megapixel is the term used for a million pixels — and the more megapixels an imaging sensor has, the higher the camera's potential resolution. On the other hand, the megapixels determine the size of the print, so higher megapixels means larger print sizes, for examples, 6 megapixels are good for 8 x 10 in. prints, 8 megapixels are good for 16 x 20 in. prints.</description><value>3008 x 2000</value><value>1504 x 1000</value><value>2256 x 1496</value></feature></featureGroup><featureGroup><name>Video</name><feature><name>Video Resolutions</name><description>Many digital cameras let you record short clips of highly compressed, low-resolution video, either as an MPEG movie or a Motion JPEG movie. This number shows the actual optimal size for a movie captured on your camera.</description><value/></feature><feature><name>Video Speed</name><value/></feature><feature><name>Video Format</name><value/></feature></featureGroup><featureGroup><name>Exposure Control</name><feature><name>Aperture Range</name><description>The aperture range measures how much light is let into the camera when taking a photo. Low f-stop settings are best for low light photography while higher f-stops provide a greater depth of field.</description><value>f3.5/f5.6 (w/t)</value></feature><feature><name>Shutter Speed</name><description>The shutter speed of a camera depends on two variables: the size of the lens and the actual timing of the shutter, opening and closing. These two factors work as a team to control the amount of light that enters the camera. This is measured in fractions on a shutter speed dial which illustrate how long the shutter opens and closes in a set period of time. The term speed refers to how long the lens remains open. For example, a setting of 1/60 on a shutter speed dial means that the shutter opens and closes within one sixtieth of a second. Various shutter speeds can be used to manipulate the final result of the picture. Usually, a faster shutter speed is used to freeze the scene, for motion shots, while a slower speed is used to create more of an unfocused, abstract result.</description><value>30 - 1/4000 sec</value></feature><feature><name>White Balance</name><description>The white balance of a digital camera controls the color outcome of pictures. All light gives off a color temperature which the camera analyzes and internally adjusts, so that the colors of the picture are captured in their true form. Without the proper white balance, the color in a photo may contain an overabundance of blue, green or orange hues.</description><value>Auto</value></feature><feature><name>Frames Per Second</name><value>2.5 Frames</value></feature></featureGroup><featureGroup><name>Storage</name><feature><name>Memory Type</name><description>There are many types of memory / media for digital cameras, but most models are compatible with only one. The most common are CompactFlash and SmartMedia. Many other cameras use Memory Stick and some write the pictures directly onto mini-CDs or floppy disks. It is helpful to choose some sort of memory device that is easy to find in stores, in case you need to purchase extra.</description><value>SD Card</value><value>SDHC Card</value></feature><feature><name>Compression Modes</name><value>Fine</value><value>Normal</value><value>Uncompressed</value><value>Basic</value></feature><feature><name>Compression Type</name><description>Many cameras include different settings to control photo resolution. The resolution of the pictures you take affects their quality as well as the amount of memory they utilize. Higher resolution results in higher quality, but takes up more memory.</description><value>JPEG</value><value>Raw Image</value><value>EXIF 2.1</value><value>DCF</value><value>DPOF</value></feature><feature><name>File Size (High Res.)</name><value>5.8 MB (22 images on 128MB card)</value></feature><feature><name>File Size (Low Res.)</name><value>0.2 MB (about 640 images on 128MB card)</value></feature></featureGroup><featureGroup><name>Flash</name><feature><name>ISO Speeds</name><description>ISO stands for International Standards Organization. It denotes the rating of a film's sensitivity to light (based on an arithmetical progression). Though digital cameras don't use film, they have adopted the same rating system for describing the sensitivity of the camera's imaging sensor. Digital cameras often include a control for adjusting the ISO speed; some will adjust it automatically depending on the lighting conditions, adjusting it upwards as the available light dims. For exampe, ISO 200 film is twice as fast as ISO 100 film but only half as fast as ISO 400. The scale is identical to ASA (American Standards Association). Generally, with higher ISO speeds there is more noise.</description><value>200</value><value>1600</value></feature><feature><name>Flash Type</name><value>Built-In &amp; External</value></feature><feature><name>Flash Functions</name><description>If the camera has a built-in flash, it might have several different flash functions, such as on/off or anti-redeye flash.</description><value>Auto Flash</value><value>Rear Sync Flash</value><value>Fill-in Flash</value><value>Red-eye Reduction Flash</value><value>Slow Sync</value></feature></featureGroup><featureGroup><name>Viewfinder / Display</name><feature><name>Viewfinder</name><description>A viewfinder is the small square on the back of a camera that you look through to compose the scene. Some cameras have small screens on the back that act as viewfinders. Other cameras have small glass areas through which you can look out of the front of the camera.</description><value>Optical (Through-the-lens)</value></feature><feature><name>LCD Screen</name><description>LCD stands for "Liquid Crystal Display." This is the small screen on the back of a camera that digitally displays the same image you would see through the viewfinder. On many cameras you can also review the pictures stored in the camera's memory on the LCD Panel.</description><value>With LCD Screen</value></feature><feature><name>LCD Screen Size</name><value>2.5 in.</value></feature><feature><name>LCD Screen Resolution</name><value>230,000 pixels</value></feature><feature><name>LCD Protected Position</name><value>Without LCD Protected Position</value></feature></featureGroup><featureGroup><name>Interfaces</name><feature><name>Interface Type</name><description>The method by which your camera will communicate with your computer or other video device. Different methods enable you to download photos at varying speeds. Make sure the interface you want is also compatible with the computer you want to use it with.</description><value>USB 2.0</value></feature><feature><name>Video Interface</name><value>Video Out</value></feature></featureGroup><featureGroup><name>Power Supply</name><feature><name>Battery Type</name><value>Rechargeable Li-Ion Battery</value></feature><feature><name>Battery Life</name><value/></feature></featureGroup><featureGroup><name>Included Features</name><feature><name>Self Timer</name><value>2 Sec.</value><value>5 Sec.</value><value>10 Sec.</value><value>20 Sec.</value></feature><feature><name>Built-in Microphone</name><value/></feature><feature><name>Tripod Mount</name><value>With Tripod Mount</value></feature></featureGroup><featureGroup><name>System Requirements</name><feature><name>Operating System</name><value/></feature></featureGroup><featureGroup><name>Dimensions</name><feature><name>Width</name><value>5 in.</value></feature><feature><name>Depth</name><value>2.5 in.</value></feature><feature><name>Height</name><value>3.7 in.</value></feature><feature><name>Weight</name><value>1.06 lb.</value></feature></featureGroup><featureGroup><name>Miscellaneous</name><feature><name>Family Line</name><value>Nikon D</value></feature><feature><name>Included Accessories</name><value>USB Cable</value><value>Lithium Battery</value><value>Battery Charger</value><value>Lens Cap</value><value>Strap</value></feature><feature><name>UPC</name><value>410100251750</value></feature><feature><name>Release Date</name><value/></feature><feature><name>Product ID</name><value>37724181</value></feature></featureGroup></specifications><reviews matchedReviewCount="101" pageNumber="1" returnedReviewCount="5"><averageRating><overallRating>4.00</overallRating><featureRating><name>Ease of Use:</name><value>4.50</value></featureRating><featureRating><name>Durability:</name><value>3.57</value></featureRating><featureRating><name>Battery Life:</name><value>4.79</value></featureRating><featureRating><name>Photo Quality:</name><value>4.50</value></featureRating><featureRating><name>Shutter Lag</name><value>4.64</value></featureRating></averageRating><consumerReview><authorID>phill525</authorID><postDate>2009-05-03T21:37:47.000-08:00</postDate><rating><overallRating>5.00</overallRating><featureRating><name>Ease of Use:</name><value>4</value></featureRating><featureRating><name>Durability:</name><value>4</value></featureRating><featureRating><name>Photo Quality:</name><value>5</value></featureRating><featureRating><name>Battery Life:</name><value>5</value></featureRating><featureRating><name>Shutter Lag</name><value>5</value></featureRating></rating><summary>Nikon D40</summary><pros>Lots of features.&lt;br&gt;Easy to use.&lt;br&gt;Intuitive menu.</pros><cons>No video capture like most recent SLR's, but not really a "con".</cons><reviewContent>This is an EXCELLENT camera for the money.&amp;nbsp; Don't be drawn to more expensive cameras just becau</reviewContent><fullReviewURL>http://www.epinions.com/content_469199523460?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>gatorbites2002</authorID><postDate>2009-04-21T17:58:40.000-08:00</postDate><rating><overallRating>4.00</overallRating><featureRating><name>Ease of Use:</name><value>4</value></featureRating><featureRating><name>Durability:</name><value>4</value></featureRating><featureRating><name>Photo Quality:</name><value>4</value></featureRating><featureRating><name>Battery Life:</name><value>5</value></featureRating><featureRating><name>Shutter Lag</name><value>5</value></featureRating></rating><summary>My Nikon D 40</summary><pros>lightweight, easy use, battery life excellent with flash use, lens is&amp;nbsp;sharp</pros><cons>&amp;nbsp;can't think of any</cons><reviewContent>lightweight, controls are easy to understand, 6 mega pixels are more than enough for great images an</reviewContent><fullReviewURL>http://www.epinions.com/content_467833163396?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>number1poppop</authorID><postDate>2009-04-10T09:39:02.000-08:00</postDate><rating><overallRating>5.00</overallRating><featureRating><name>Ease of Use:</name><value>5</value></featureRating><featureRating><name>Durability:</name><value>4</value></featureRating><featureRating><name>Photo Quality:</name><value>4</value></featureRating><featureRating><name>Battery Life:</name><value>5</value></featureRating><featureRating><name>Shutter Lag</name><value>5</value></featureRating></rating><summary>I was really surprised</summary><pros>The ease of use and quality of the pictures was more than i expected.</pros><cons>I didn't find any cons as far as learning how to use the camera.</cons><reviewContent>I was really surprised at&amp;nbsp;how&amp;nbsp;easy i was to use. i never had a camera like this. im used t</reviewContent><fullReviewURL>http://www.epinions.com/content_466598858372?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>eleven59</authorID><postDate>2008-11-16T00:16:24.000-08:00</postDate><rating><overallRating>4.00</overallRating><featureRating><name>Ease of Use:</name><value>5</value></featureRating><featureRating><name>Durability:</name><value>4</value></featureRating><featureRating><name>Photo Quality:</name><value>5</value></featureRating><featureRating><name>Battery Life:</name><value>2</value></featureRating><featureRating><name>Shutter Lag</name><value>2</value></featureRating></rating><summary>It's Cam-tastic!</summary><pros>Beautiful, clear pictures&lt;br&gt;Uncomplicated to use&lt;br&gt;Sturdy components</pros><cons>Occasional hesitation between depression of shutter button and recording of picture.&lt;br&gt;Battery needs frequent charging.</cons><bottomLine>Seems simple enough for an amateur, yet could be used with confidence by a professional.&amp;nbsp;</bottomLine><reviewContent>The AF-S DX Zoom-Nikkor 18-55mm D40 Digital Camera takes excellent photoraphs.&amp;nbsp; The camera come</reviewContent><fullReviewURL>http://www.epinions.com/content_451550613124?linkin_id=7000610</fullReviewURL></consumerReview><consumerReview><authorID>mr_scayf</authorID><postDate>2008-11-03T22:43:42.000-08:00</postDate><rating><overallRating>4.00</overallRating><featureRating><name>Ease of Use:</name><value>4</value></featureRating><featureRating><name>Durability:</name><value>4</value></featureRating><featureRating><name>Photo Quality:</name><value>5</value></featureRating><featureRating><name>Battery Life:</name><value>5</value></featureRating><featureRating><name>Shutter Lag</name><value>5</value></featureRating></rating><summary>A step up from the D40</summary><pros>Dedicated ISO/WB buttons, better diopter</pros><cons>Same metering issues as D40</cons><bottomLine>The D80 is a camera for those ready to express, and apply, themselves.</bottomLine><reviewContent>I've been using the D40 for about a year and a half now, and have been getting some great images wit</reviewContent><fullReviewURL>http://www.epinions.com/content_450221543044?linkin_id=7000610</fullReviewURL></consumerReview><writeReviewURL>http://www.epinions.com/content/write.html/dt_product_id_~37724181?linkin_id=7000610</writeReviewURL></reviews></product></items><attributes matchedAttributeCount="12" returnedAttributeCount="5"><attribute id="Dynamic_Price_Range"><name>Price Range</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="5" returnedValueCount="5"><attributeValue id="price_range_0_150" matchingItemsCount="22"><name>Below $150</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_0_150~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_150_220" matchingItemsCount="23"><name>$150 - $220</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_150_220~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_220_380" matchingItemsCount="21"><name>$220 - $380</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_220_380~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_380_1060" matchingItemsCount="23"><name>$380 - $1060</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_380_1060~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_1060_8000" matchingItemsCount="23"><name>Above $1060</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_1060_8000~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="21885_resolution"><name>Resolution</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-21885_resolution~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="9" returnedValueCount="5"><attributeValue id="12_megapixel_digital_cameras" matchingItemsCount="24"><name>12 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-12_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="11_megapixel_digital_cameras" matchingItemsCount="24"><name>11 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-11_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="10_megapixel_digital_cameras" matchingItemsCount="49"><name>10 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-10_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="9_megapixel_digital_cameras" matchingItemsCount="51"><name>9 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-9_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="8_megapixel_digital_cameras" matchingItemsCount="66"><name>8 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-8_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="store"><name>Store</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-store~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="38" returnedValueCount="5"><attributeValue id="amazon_marketplace" matchingItemsCount="98"><name>Amazon Marketplace</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-amazon_marketplace~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="4134392_ebay_merch" matchingItemsCount="76"><name>eBay</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-4134392_ebay_merch~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="store_adorama" matchingItemsCount="35"><name>Adorama</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-store_adorama~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="j_r_music_and_computer_world" matchingItemsCount="24"><name>J&amp;R Music and Computer World</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-j_r_music_and_computer_world~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="dell_electronics_and_accessories_merch" matchingItemsCount="13"><name>Dell</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-dell_electronics_and_accessories_merch~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="image_sensor_type"><name>Image Sensor Type</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-image_sensor_type~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="2" returnedValueCount="2"><attributeValue id="ccd" matchingItemsCount="91"><name>CCD</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-ccd~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="cmos" matchingItemsCount="17"><name>CMOS</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-cmos~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="29443_family_line"><name>Family Line</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-29443_family_line~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="2" returnedValueCount="2"><attributeValue id="nikon_d_series" matchingItemsCount="38"><name>Nikon D</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-nikon_d_series~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="nikon_coolpix" matchingItemsCount="73"><name>Nikon COOLPIX</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-nikon_coolpix~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute></attributes><contentType>products</contentType></category></categories><relatedTerms><term>canon powershot</term><term>digital camera</term><term>digital cameras</term><term>nikon d40x</term><term>canon powershot sd750</term><term>olympus e-510</term><term>canon powershot sd1000</term><term>canon</term><term>canon powershot s5</term><term>nikon d80</term><term>panasonic lumix</term><term>kodak easyshare v1003</term><term>casio exilim ex-z1050</term><term>casio exilim</term><term>camera</term><term>canon powershot a460</term><term>canon powershot a560</term><term>sony cyber-shot dsc-s700</term><term>canon powershot sd900</term><term>canon powershot sd800</term></relatedTerms></GeneralSearchResponse>
@@ -0,0 +1 @@
1
+ <GenericResponse xmlns="urn:types.partner.api.shopping.com"><serverDetail><apiEnv>sandbox</apiEnv><apiVersion>3.1 R21.4</apiVersion><buildNumber>11332</buildNumber><buildTimestamp>2009.08.04 11:26:52 PST</buildTimestamp><requestId>w2.7ac86c106dd2e291b4f0</requestId><timestamp>2009-08-11T17:58:51.772-04:00</timestamp></serverDetail><exceptions exceptionCount="1"><exception type="error"><code>32</code><message>No method specified in the url.</message></exception></exceptions></GenericResponse>
@@ -0,0 +1 @@
1
+ <GeneralSearchResponse xmlns="urn:types.partner.api.shopping.com"><serverDetail><apiEnv>sandbox</apiEnv><apiVersion>3.1 R21.3</apiVersion><buildNumber>10854</buildNumber><buildTimestamp>2009.07.02 16:24:27 PST</buildTimestamp><requestId>w2.133837ab910c2065558d</requestId><timestamp>2009-07-31T11:00:58.016-04:00</timestamp><responseTime>P0Y0M0DT0H0M0.041S</responseTime></serverDetail><exceptions exceptionCount="1"><exception type="warning"><code>1112</code><message>You are currently using the SDC API sandbox environment! No clicks to merchant URLs from this response will be paid. Please change the host of your API requests to 'publisher.api.shopping.com' when you have finished development and testing</message></exception></exceptions><clientTracking height="19" type="logo" width="106"><sourceURL>http://statTest.dealtime.com/pixel/noscript?PV_EvnTyp=APPV&amp;APPV_APITSP=07%2F31%2F09_11%3A00%3A58_AM&amp;APPV_DSPRQSID=w2.133837ab910c2065558d&amp;APPV_IMGURL=http://img.shopping.com/sc/glb/sdc_logo_106x19.gif&amp;APPV_LI_LNKINID=7000610&amp;APPV_LI_SBMKYW=nikon&amp;APPV_MTCTYP=1000&amp;APPV_PRTID=2002&amp;APPV_BrnID=14305</sourceURL><hrefURL>http://www.shopping.com/xPP-digital_cameras</hrefURL><titleText>Digital Cameras</titleText><altText>Digital Cameras</altText></clientTracking><searchHistory><categorySelection id="3"><name>Electronics</name><categoryURL>http://www.shopping.com/xCH-electronics-nikon~linkin_id-7000610?oq=nikon</categoryURL></categorySelection><categorySelection id="449"><name>Cameras and Photography</name><categoryURL>http://www.shopping.com/xCH-cameras_and_photography-nikon~linkin_id-7000610?oq=nikon</categoryURL></categorySelection><categorySelection id="7185"><name>Digital Cameras</name><categoryURL>http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon</categoryURL></categorySelection><dynamicNavigationHistory><keywordSearch dropped="false" modified="false"><originalKeyword>nikon</originalKeyword><resultKeyword>nikon</resultKeyword></keywordSearch></dynamicNavigationHistory></searchHistory><categories matchedCategoryCount="1" returnedCategoryCount="1"><category id="7185"><name>Digital Cameras</name><categoryURL>http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon</categoryURL><items matchedItemCount="111" pageNumber="1" returnedItemCount="5"><product id="84682579"><name>Nikon D5000 Body Only Digital Camera</name><shortDescription>12.9 Megapixel, SLR Camera, 2.7 in. LCD Screen, With High Definition Video, Weight: 1.24 lb.</shortDescription><fullDescription>An innovative 2.7-in. Vari-angle monitor, outstanding 12.3-megapixel image quality, D-Movie capability, and expanded Scene Modes deliver renowned Nikon quality in a fun, easy-to-use digital SLR.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-100x100-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=1</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-200x200-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=1</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-300x300-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=1</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/9b/d4/3e/84682579-400x400-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=1</sourceURL></image></images><rating><reviewCount>24</reviewCount><rating>4.40</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.5.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D5000-Body-Only~linkin_id-7000610</reviewURL></rating><minPrice>180.00</minPrice><maxPrice>900.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D5000-Body-Only~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D5000-Body-Only~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="14" pageNumber="1" returnedOfferCount="0"/></product><product id="70621646"><name>Nikon D90 Digital Camera with 18-105mm lens</name><shortDescription>12.9 Megapixel, SLR Camera, 3 in. LCD Screen, 5.8x Optical Zoom, With Video Capability, Weight: 2.3 lb.</shortDescription><fullDescription>Its 12.3 megapixel DX-format CMOS image sensor and EXPEED image processing system offer outstanding image quality across a wide ISO light sensitivity range. Live View mode lets you compose and shoot via the high-resolution 3-inch LCD monitor, and an advanced Scene Recognition System and autofocus performance help capture images with astounding accuracy. Movies can be shot in Motion JPEG format using the D-Movie function. The camera’s large image sensor ensures exceptional movie image quality and you can create dramatic effects by shooting with a wide range of interchangeable NIKKOR lenses, from wide-angle to macro to fisheye, or by adjusting the lens aperture and experimenting with depth-of-field. The D90 – designed to fuel your passion for photography.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-100x100-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=2</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-200x200-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=2</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-300x300-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=2</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/57/6a/4f/70621646-400x400-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=2</sourceURL></image></images><rating><reviewCount>12</reviewCount><rating>4.80</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_5.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D90-with-18-105mm-lens~linkin_id-7000610</reviewURL></rating><minPrice>1139.00</minPrice><maxPrice>1300.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D90-with-18-105mm-lens~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D90-with-18-105mm-lens~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="14" pageNumber="1" returnedOfferCount="0"/></product><product id="77160878"><name>Nikon D90 Body Only Digital Camera</name><shortDescription>12.9 Megapixel, SLR Camera, 3 in. LCD Screen, With High Definition Video, Weight: 1.38 lb.</shortDescription><fullDescription>The D90 provides remarkable performance and operability, featuring Nikon’s exclusive Scene Recognition System that optimizes auto focus, auto exposure, i-TTL control and auto white balance milliseconds before the shutter is released. Live View mode allows shooting while confirming the subject on the large 3-in., approx. 920k-dot, high-density colour LCD. It offers three contrast-detect AF modes to allow photographers to focus on any point in the frame, enabling a greater variety of composition. In addition to wide and normal area AF, the D90 offers Face-priority AF in Live View mode for even sharper portraits. These are just some of the powerful features housed in a compact, comfortable-to-hold body, with intuitive controls. The D90 will satisfy the requirements of passionate photographers who demand superior image quality and want exciting photographic possibilities.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-100x100-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=3</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-200x200-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=3</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-300x300-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=3</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/4f/fd/3d/77160878-400x400-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=3</sourceURL></image></images><rating><reviewCount>3</reviewCount><rating>4.70</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.5.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D90-DX-Body-Only~linkin_id-7000610</reviewURL></rating><minPrice>800.00</minPrice><maxPrice>1000.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D90-DX-Body-Only~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D90-DX-Body-Only~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="15" pageNumber="1" returnedOfferCount="0"/></product><product id="56321218"><name>Nikon D60 Digital Camera with 18-55mm lens</name><shortDescription>10.75 Megapixel, SLR Camera, 2.5 in. LCD Screen, 3x Optical Zoom, With Video Capability, Weight: 1.06 lb.</shortDescription><fullDescription>The D60 is a high-performance DX format digital SLR with a 10.2 megapixel resolution. Easy to use and easy to handle, it is the perfect way to explore the magic of digital SLR photography.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-100x100-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=4</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-200x200-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=4</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-300x300-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=4</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/bb/94/9d/56321218-400x400-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=4</sourceURL></image></images><rating><reviewCount>8</reviewCount><rating>4.10</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-Nikon-D60-SLR-Camera-Kit-18-55mm-Lens~linkin_id-7000610</reviewURL></rating><minPrice>547.00</minPrice><maxPrice>647.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-Nikon-D60-SLR-Camera-Kit-18-55mm-Lens~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-Nikon-D60-SLR-Camera-Kit-18-55mm-Lens~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="11" pageNumber="1" returnedOfferCount="0"/></product><product id="37724181"><name>Nikon D40 Digital Camera with 18-55mm lens</name><shortDescription>6.24 Megapixel, SLR Camera, 2.5 in. LCD Screen, 3x Optical Zoom, Weight: 1.06 lb.</shortDescription><fullDescription>Great pictures used to require complicated and cumbersome equipment along with years of experience. Not any more. The D40 is compact, lightweight and designed specifically for ease of use, yet contains top-quality, high-performance technologies that you expect from a Nikon digital SLR. And with world-famous Nikkor lenses, you know you have a sharp and reliable optical performance. All in a camera light enough to carry with you everywhere. Beautiful photography has never been easier.</fullDescription><images><image available="true" height="100" width="100"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-100x100-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=5</sourceURL></image><image available="true" height="200" width="200"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-200x200-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=5</sourceURL></image><image available="true" height="300" width="300"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-300x300-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=5</sourceURL></image><image available="true" height="400" width="400"><sourceURL>http://di1.shopping.com/images/pi/dd/9b/90/37724181-400x400-0-0.jpg?p=w2.133837ab910c2065558d&amp;a=2&amp;c=1&amp;l=7000610&amp;t=090731110057&amp;r=5</sourceURL></image></images><rating><reviewCount>102</reviewCount><rating>4.00</rating><ratingImage height="18" width="91"><sourceURL>http://img.shopping.com/sc/pr/sdc_stars_sm_4.gif</sourceURL></ratingImage><reviewURL>http://www.shopping.com/xPR-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610</reviewURL></rating><minPrice>370.00</minPrice><maxPrice>600.00</maxPrice><productOffersURL>http://www.shopping.com/xPO-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610</productOffersURL><productSpecsURL>http://www.shopping.com/xPF-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610</productSpecsURL><offers matchedOfferCount="9" pageNumber="1" returnedOfferCount="0"/></product></items><attributes matchedAttributeCount="12" returnedAttributeCount="5"><attribute id="Dynamic_Price_Range"><name>Price Range</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="5" returnedValueCount="5"><attributeValue id="price_range_0_180" matchingItemsCount="22"><name>Below $180</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_0_180~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_180_250" matchingItemsCount="22"><name>$180 - $250</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_180_250~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_250_390" matchingItemsCount="23"><name>$250 - $390</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_250_390~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_390_1170" matchingItemsCount="22"><name>$390 - $1170</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_390_1170~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="price_range_1170_6500" matchingItemsCount="22"><name>Above $1170</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-price_range_1170_6500~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="21885_resolution"><name>Resolution</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-21885_resolution~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="9" returnedValueCount="5"><attributeValue id="12_megapixel_digital_cameras" matchingItemsCount="20"><name>12 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-12_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="11_megapixel_digital_cameras" matchingItemsCount="20"><name>11 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-11_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="10_megapixel_digital_cameras" matchingItemsCount="44"><name>10 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-10_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="9_megapixel_digital_cameras" matchingItemsCount="46"><name>9 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-9_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="8_megapixel_digital_cameras" matchingItemsCount="61"><name>8 Megapixel Digital Cameras</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-8_megapixel_digital_cameras~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="store"><name>Store</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-store~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="37" returnedValueCount="5"><attributeValue id="amazon_marketplace" matchingItemsCount="92"><name>Amazon Marketplace</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-amazon_marketplace~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="4134392_ebay_merch" matchingItemsCount="71"><name>eBay</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-4134392_ebay_merch~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="store_adorama" matchingItemsCount="35"><name>Adorama</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-store_adorama~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="9689_amazon" matchingItemsCount="19"><name>Amazon</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-9689_amazon~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="j_r_music_and_computer_world" matchingItemsCount="17"><name>J&amp;R Music and Computer World</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-j_r_music_and_computer_world~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="29443_family_line"><name>Family Line</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-29443_family_line~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="2" returnedValueCount="2"><attributeValue id="nikon_d_series" matchingItemsCount="40"><name>Nikon D</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-nikon_d_series~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="nikon_coolpix" matchingItemsCount="70"><name>Nikon COOLPIX</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-nikon_coolpix~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute><attribute id="image_sensor_type"><name>Image Sensor Type</name><attributeURL>http://www.shopping.com/xPP-digital_cameras-nikon~all-image_sensor_type~MS-1~linkin_id-7000610?oq=nikon</attributeURL><attributeValues matchedValueCount="2" returnedValueCount="2"><attributeValue id="ccd" matchingItemsCount="89"><name>CCD</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-ccd~linkin_id-7000610</attributeValueURL></attributeValue><attributeValue id="cmos" matchingItemsCount="17"><name>CMOS</name><attributeValueURL>http://www.shopping.com/xPP-digital_cameras-nikon-cmos~linkin_id-7000610</attributeValueURL></attributeValue></attributeValues></attribute></attributes><contentType>products</contentType></category></categories><relatedTerms><term>canon powershot</term><term>digital camera</term><term>digital cameras</term><term>nikon d40x</term><term>canon powershot sd750</term><term>olympus e-510</term><term>canon powershot sd1000</term><term>canon</term><term>canon powershot s5</term><term>nikon d80</term><term>panasonic lumix</term><term>kodak easyshare v1003</term><term>casio exilim ex-z1050</term><term>casio exilim</term><term>camera</term><term>canon powershot a460</term><term>canon powershot a560</term><term>sony cyber-shot dsc-s700</term><term>canon powershot sd900</term><term>canon powershot sd800</term></relatedTerms></GeneralSearchResponse>
@@ -0,0 +1 @@
1
+ <GenericResponse xmlns="urn:types.partner.api.shopping.com"><serverDetail><apiEnv>sandbox</apiEnv><apiVersion>3.1 R21.3</apiVersion><buildNumber>10854</buildNumber><buildTimestamp>2009.07.02 16:24:27 PST</buildTimestamp><requestId>w2.75f3638f53f335ae8e14</requestId><timestamp>2009-07-31T12:14:18.955-04:00</timestamp></serverDetail><exceptions exceptionCount="1"><exception type="error"><code>28</code><message>GeneralSearch requires either a product, an offer, a leaf-level category, or a keyword.</message></exception></exceptions></GenericResponse>
@@ -0,0 +1,17 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class ClientTest < Test::Unit::TestCase
4
+ include Shoppr
5
+
6
+ context "When performing general search" do
7
+ setup { @client = Shoppr::Client.new(true) }
8
+
9
+ should "get the api version" do
10
+ stub_get '/', 'generic_response.xml'
11
+ @client.api_version.should == '3.1 R21.4'
12
+ end
13
+
14
+ end
15
+
16
+
17
+ end
@@ -0,0 +1,206 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class GeneralSearchResponseTest < Test::Unit::TestCase
4
+ include Shoppr
5
+
6
+ context "When mapping general search response XML to ruby objects" do
7
+ setup { @general_response = GeneralSearchResponse.from_xml(fixture_file('general_search_specs_offers_reviews.xml')) }
8
+
9
+ should "include server detail information" do
10
+ @general_response.server_detail.api_version.should == '3.1 R21.4'
11
+ @general_response.server_detail.api_env.should == 'sandbox'
12
+ end
13
+
14
+ should "include exceptions" do
15
+ @general_response.exceptions.size.should == 1
16
+ @general_response.exceptions.first.code.should == 1112
17
+ end
18
+
19
+ should "include client tracking info" do
20
+ @general_response.client_tracking.height.should == 19
21
+ @general_response.client_tracking.width.should == 106
22
+ @general_response.client_tracking.type.should == 'logo'
23
+ @general_response.client_tracking.alt_text.should == 'Digital Cameras'
24
+ end
25
+
26
+ should "include search history info" do
27
+ @general_response.search_history.category_selections.size.should == 3
28
+ @general_response.search_history.category_selections.last.id.should == 7185
29
+ @general_response.search_history.category_selections.last.category_url.should == 'http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon'
30
+ end
31
+
32
+ should "include related terms" do
33
+ @general_response.related_terms.size.should == 20
34
+ @general_response.related_terms.last.should == 'canon powershot sd800'
35
+ end
36
+
37
+ should "include categories" do
38
+ @general_response.categories.size.should == 1
39
+ end
40
+
41
+ context "when mapping categories" do
42
+ setup do
43
+ @categories = @general_response.categories
44
+ end
45
+
46
+ should "include category properties" do
47
+ @categories.first.id.should == 7185
48
+ @categories.first.name.should == 'Digital Cameras'
49
+ @categories.first.category_url.should == 'http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon'
50
+ end
51
+
52
+ should "include products" do
53
+ @categories.first.products.size.should == 5
54
+ end
55
+
56
+ context "when mapping products" do
57
+ setup do
58
+ @product = @categories.first.products.last
59
+ end
60
+
61
+ should "should map product attributes" do
62
+ @product.id.should == 37724181
63
+ @product.name.should == 'Nikon D40 Digital Camera with 18-55mm lens'
64
+ @product.short_description.should == '6.24 Megapixel, SLR Camera, 2.5 in. LCD Screen, 3x Optical Zoom, Weight: 1.06 lb.'
65
+ @product.min_price.should == 375.00
66
+ @product.max_price.should == 600.00
67
+ @product.product_offers_url.should == 'http://www.shopping.com/xPO-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610'
68
+ @product.product_specs_url.should == 'http://www.shopping.com/xPF-Nikon-D40-with-G-II-18-55mm-Lens~linkin_id-7000610'
69
+ end
70
+
71
+ context "when mapping offers" do
72
+ setup do
73
+ @offer = @product.offers.last
74
+ end
75
+
76
+ should "should include offer info" do
77
+ @product.offers.size.should == 5
78
+ @offer.featured?.should == true
79
+ @offer.smart_buy?.should == false
80
+ @offer.used?.should == false
81
+ @offer.name.should == 'Nikon D40 6.1 Megapixel Digital SLR Camera 3X Zoom Kit Outfit, with 18-55mm f/3.5-5.6G ED II AF-S DX Zoom Nikkor Lens - Refurbished by Nikon U.S.A.'
82
+ @offer.description.length.should_not == 0
83
+ @offer.category_id.should == 7185
84
+ @offer.manufacturer.should == 'Nikon'
85
+ @offer.images.size.should == 4
86
+ @offer.images.last.width.should == 400
87
+ @offer.stock_status.should == 'in-stock'
88
+ @offer.store_notes.should == 'Refurbished Model'
89
+ #@offer.currency.should == 'USD'
90
+ @offer.base_price.should == 374.95
91
+ @offer.tax.should == nil
92
+ @offer.shipping_cost.should == 0.00
93
+ @offer.total_price.should == nil
94
+ @offer.offer_url.include?('http://').should == true
95
+ end
96
+
97
+ context "when mapping store info" do
98
+ setup do
99
+ @store = @offer.store
100
+ end
101
+
102
+ should "should include store info" do
103
+ @store.name.should == 'Adorama'
104
+ @store.logo.height.should == 31
105
+ @store.rating.should == 4.50
106
+ @store.review_count.should == 6187
107
+ @store.review_url.should == 'http://www.shopping.com/xMR-null~MRD-9391~S-1~linkin_id-7000610'
108
+ @store.rating_image.source_url.should == 'http://img.shopping.com/sc/mr/sdc_checks_45.gif'
109
+ @store.country_code.should == 'US'
110
+ end
111
+ end
112
+
113
+ end
114
+
115
+ should "include specifications" do
116
+ @product.specifications.size.should == 15
117
+ end
118
+
119
+ context "when mapping feature groups" do
120
+ setup do
121
+ @feature_group = @product.specifications[1]
122
+ end
123
+
124
+ should "should include feature info" do
125
+ @feature_group.features.size.should == 5
126
+ @feature = @feature_group.features[3]
127
+ @feature.name.should == 'Image Sensor Type'
128
+ @feature.description.nil?.should == false
129
+ @feature.values.first.should == 'CCD'
130
+ end
131
+ end
132
+
133
+
134
+ should "include review info" do
135
+ @product.review_count.should == 101
136
+ @product.rating.should == 4.00
137
+ @product.rating_image.source_url.should == 'http://img.shopping.com/sc/pr/sdc_stars_sm_4.gif'
138
+ @product.reviews.size.should == 5
139
+ @product.overall_rating.should == 4.00
140
+ @product.feature_ratings.size.should == 5
141
+ @product.feature_ratings.last.name.should == 'Shutter Lag'
142
+ @product.feature_ratings.last.value.should == 4.64
143
+ end
144
+
145
+ context "when mapping consumer reviews" do
146
+ setup do
147
+ @review = @product.reviews.first
148
+ end
149
+
150
+ should "include review info" do
151
+ @review.author_id.should == 'phill525'
152
+ @review.post_date.yday.should == 124
153
+ @review.rating.should == 5.00
154
+ @review.feature_ratings.size.should == 5
155
+ @review.feature_ratings.first.name.should == 'Ease of Use:'
156
+ @review.feature_ratings.first.value.should == 4
157
+ @review.summary.should == 'Nikon D40'
158
+ @review.pros.should == 'Lots of features.<br>Easy to use.<br>Intuitive menu.'
159
+ @review.cons.should == 'No video capture like most recent SLR\'s, but not really a "con".'
160
+ @review.content.should == 'This is an EXCELLENT camera for the money.&nbsp; Don\'t be drawn to more expensive cameras just becau'
161
+ @review.url.should == 'http://www.epinions.com/content_469199523460?linkin_id=7000610'
162
+ end
163
+ end
164
+
165
+ context "when mapping images" do
166
+
167
+ should "should include images" do
168
+ #@product.images.size.should == 4
169
+ @product.images.first.height.should == 100
170
+ @product.images.last.width.should == 400
171
+ @product.images.last.source_url.should == 'http://di1.shopping.com/images/pi/dd/9b/90/37724181-400x400-0-0.jpg?p=w2.8817498383328ac21657&a=2&c=1&l=7000610&t=090810232437&r=5'
172
+ end
173
+ end
174
+
175
+ end
176
+
177
+
178
+ should "include offers" do
179
+ @categories.first.offers.size.should == 0
180
+ end
181
+
182
+ should "include attributes" do
183
+ @categories.first.attributes.size.should == 5
184
+ end
185
+
186
+ context "when mapping attributes" do
187
+ setup do
188
+ @attributes = @categories.first.attributes
189
+ end
190
+
191
+ should "include attribute properties" do
192
+ attribute = @attributes.first
193
+ attribute.id.should == 'Dynamic_Price_Range'
194
+ attribute.name.should == 'Price Range'
195
+ attribute.attribute_url.should == 'http://www.shopping.com/xPP-digital_cameras-nikon~linkin_id-7000610?oq=nikon'
196
+ end
197
+
198
+ should "include attribute values" do
199
+ attribute_values = @attributes.first.attribute_values
200
+ attribute_values.first.name.should == 'Below $150'
201
+ attribute_values.first.attribute_value_url.should == 'http://www.shopping.com/xPP-digital_cameras-nikon-price_range_0_150~linkin_id-7000610'
202
+ end
203
+ end
204
+ end
205
+ end
206
+ end
@@ -0,0 +1,14 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class GenericResponseTest < Test::Unit::TestCase
4
+ include Shoppr
5
+
6
+ context "When mapping generic response XML to ruby objects" do
7
+ setup { @response = GenericResponse.from_xml(fixture_file('generic_response.xml')) }
8
+
9
+ should "include server detail information" do
10
+ @response.server_detail.api_version.should == '3.1 R21.4'
11
+ @response.server_detail.api_env.should == 'sandbox'
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,36 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+ require 'matchy'
5
+ require 'mocha'
6
+ require 'fakeweb'
7
+
8
+ FakeWeb.allow_net_connect = false
9
+
10
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
11
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
12
+ require 'shoppr'
13
+
14
+ class Test::Unit::TestCase
15
+ end
16
+
17
+ def fixture_file(filename)
18
+ return '' if filename == ''
19
+ file_path = File.expand_path(File.dirname(__FILE__) + '/fixtures/' + filename)
20
+ File.read(file_path)
21
+ end
22
+
23
+ def remix_url(url)
24
+ url =~ /^http/ ? url : "http://sandbox.api.shopping.com/publisher/3.0/rest#{url}"
25
+ end
26
+
27
+ def stub_get(url, filename, status=nil)
28
+ options = {:body => fixture_file(filename)}
29
+ options.merge!({:status => status}) unless status.nil?
30
+
31
+ FakeWeb.register_uri(:get, remix_url(url), options)
32
+ end
33
+
34
+ def stub_post(url, filename)
35
+ FakeWeb.register_uri(:post, remix_url(url), :body => fixture_file(filename))
36
+ end
metadata ADDED
@@ -0,0 +1,165 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: shoppr
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Wynn Netherland
8
+ - Jim Mulholland
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-08-17 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: mash
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - "="
23
+ - !ruby/object:Gem::Version
24
+ version: 0.0.3
25
+ version:
26
+ - !ruby/object:Gem::Dependency
27
+ name: httparty
28
+ type: :runtime
29
+ version_requirement:
30
+ version_requirements: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "="
33
+ - !ruby/object:Gem::Version
34
+ version: 0.4.3
35
+ version:
36
+ - !ruby/object:Gem::Dependency
37
+ name: thoughtbot-shoulda
38
+ type: :development
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: "0"
45
+ version:
46
+ - !ruby/object:Gem::Dependency
47
+ name: jeremymcanally-matchy
48
+ type: :development
49
+ version_requirement:
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: "0"
55
+ version:
56
+ - !ruby/object:Gem::Dependency
57
+ name: mocha
58
+ type: :development
59
+ version_requirement:
60
+ version_requirements: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "0"
65
+ version:
66
+ - !ruby/object:Gem::Dependency
67
+ name: fakeweb
68
+ type: :development
69
+ version_requirement:
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: "0"
75
+ version:
76
+ - !ruby/object:Gem::Dependency
77
+ name: mash
78
+ type: :development
79
+ version_requirement:
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: "0"
85
+ version:
86
+ description:
87
+ email: wynn@squeejee.com
88
+ executables: []
89
+
90
+ extensions: []
91
+
92
+ extra_rdoc_files:
93
+ - README.rdoc
94
+ files:
95
+ - History
96
+ - License
97
+ - README.rdoc
98
+ - Rakefile
99
+ - VERSION.yml
100
+ - lib/shoppr.rb
101
+ - lib/shoppr/api_exception.rb
102
+ - lib/shoppr/attribute.rb
103
+ - lib/shoppr/attribute_selection.rb
104
+ - lib/shoppr/attribute_value.rb
105
+ - lib/shoppr/category.rb
106
+ - lib/shoppr/category_selection.rb
107
+ - lib/shoppr/client.rb
108
+ - lib/shoppr/client_tracking.rb
109
+ - lib/shoppr/consumer_review.rb
110
+ - lib/shoppr/dynamic_navigation_history.rb
111
+ - lib/shoppr/feature.rb
112
+ - lib/shoppr/feature_group.rb
113
+ - lib/shoppr/feature_rating.rb
114
+ - lib/shoppr/general_search_response.rb
115
+ - lib/shoppr/generic_response.rb
116
+ - lib/shoppr/image.rb
117
+ - lib/shoppr/keyword_search.rb
118
+ - lib/shoppr/offer.rb
119
+ - lib/shoppr/offer_selection.rb
120
+ - lib/shoppr/product.rb
121
+ - lib/shoppr/product_selection.rb
122
+ - lib/shoppr/search_history.rb
123
+ - lib/shoppr/server_detail.rb
124
+ - lib/shoppr/store.rb
125
+ - test/fixtures/general_search_specs_offers_reviews.xml
126
+ - test/fixtures/generic_response.xml
127
+ - test/fixtures/nikon.xml
128
+ - test/fixtures/no_options.xml
129
+ - test/shoppr/client_test.rb
130
+ - test/shoppr/general_search_response_test.rb
131
+ - test/shoppr/generic_response_test.rb
132
+ - test/test_helper.rb
133
+ has_rdoc: true
134
+ homepage: http://github.com/squeejee/shoppr
135
+ licenses: []
136
+
137
+ post_install_message:
138
+ rdoc_options:
139
+ - --charset=UTF-8
140
+ require_paths:
141
+ - lib
142
+ required_ruby_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: "0"
147
+ version:
148
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: "0"
153
+ version:
154
+ requirements: []
155
+
156
+ rubyforge_project: shoppr
157
+ rubygems_version: 1.3.3
158
+ signing_key:
159
+ specification_version: 3
160
+ summary: Ruby wrapper for the Shopping.com API
161
+ test_files:
162
+ - test/shoppr/client_test.rb
163
+ - test/shoppr/general_search_response_test.rb
164
+ - test/shoppr/generic_response_test.rb
165
+ - test/test_helper.rb