' + businessHourM2FText + '
?
Saturday
' + '' + businessHourSATText + '
' + '?
Sunday
' + '' + businessHourSUNText + '
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html( pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-114),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } else { pickupHourInfo = 'Please call for store hours.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_PICKUP_HOUR").show(); WALMART.$("#ROLLOVER_PICKUP_HOUR").html(pickupHourInfo); WALMART.$('#ROLLOVER').wmBubble('position',{top:(y-38),left:x}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } function generateBusinessHourText(businessHour) { if (businessHour) { openTime = businessHour.openTime; closeTime = businessHour.closeTime; if ((openTime == '-1:-1 am' || openTime == '00:00 am') && closeTime == '00:00 am') { return 'Closed'; } else if (openTime == '00:00 am' && (closeTime == '11:59 pm' || closeTime == '-1:-1 am')) { return 'Open 24 hours'; } else { return openTime + ' ? ' + closeTime; } } } /* * This method added for VIBS project which used to show online price tooltip. */ function showOnlinePriceOverlayRollover(e) { var onliePriceTipContent = 'In-store prices vary from online prices - please visit your store for exact pricing. Online prices are not honored in our stores.' isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$('#ROLLOVER_OTHER_TEXT').show(); WALMART.$('#ROLLOVER_OTHER_TEXT').html(onliePriceTipContent); e = (e) ? e : ((event) ? event : "") WALMART.$('#ROLLOVER').wmBubble('position',{top:getY(e) - 25,left:getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } var isRolloverShown = false; var rolloverIndex = 0; function showPreferredStoreRollover(e, ind) { var slapStoresData = WALMART.bot.stores; var spulStoresData = WALMART.spul.stores; var storesData = (typeof slapStoresData !== 'undefined' && slapStoresData && slapStoresData != '' && slapStoresData.stores != '') ? slapStoresData : spulStoresData; if (storesData != null && storesData.stores != null && storesData.stores != '' && (!isRolloverShown || rolloverIndex != ind)) { rolloverIndex = ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") var el = e.target; var storeIndex = ind - 1; resetRollover(); if(storesData.stores[storeIndex]!= undefined && storesData.stores[storeIndex].address != undefined ){ WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html( storesData.stores[storeIndex].address.city); WALMART.$('#ROLLOVER_ADDR1').html(storesData.stores[storeIndex].address.fullStreet); WALMART.$('#ROLLOVER_ADDR2').html(storesData.stores[storeIndex].address.city + ", " + storesData.stores[storeIndex].address.stateCode + " " + storesData.stores[storeIndex].address.zipCode); WALMART.$('#ROLLOVER').wmBubble('position',{top:findPosY(el) - 66,left:findPosX(el)}); WALMART.$('#ROLLOVER').wmBubble('update',WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } } } function showSelectedStoreRollover(e, city, fullstreet, zip, state) { // if (store!=null ){ //rolloverIndex=ind; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); e = (e) ? e : ((window.event) ? window.event : "") resetRollover(); WALMART.$('#ROLLOVER_CITY').show(); WALMART.$('#ROLLOVER_ADDR1').show(); WALMART.$('#ROLLOVER_ADDR2').show(); WALMART.$('#ROLLOVER_CITY').html(city);//store.address.city; WALMART.$('#ROLLOVER_ADDR1').html(fullstreet);//store.address.fullStreet; WALMART.$('#ROLLOVER_ADDR2').html(city + ", " + state + " " + zip); WALMART.$('#ROLLOVER').wmBubble('position', {top: getY(e),left: getX(e)}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); } function showSOIRollover(e, desc) { showRollover(e, desc); } function hideRollover(e) { WALMART.$('#ROLLOVER').wmBubble('hide'); isRolloverShown = false; clearTimeout(hideTimer); } function resetRollover() { WALMART.$("#ROLLOVER_CITY").hide(); WALMART.$("#ROLLOVER_ADDR1").hide(); WALMART.$("#ROLLOVER_ADDR2").hide(); WALMART.$("#ROLLOVER_OTHER_TEXT").hide(); WALMART.$("#ROLLOVER_CLOSE").hide(); WALMART.$("#ROLLOVER_PICKUP_HOUR").hide(); } var hideTimer; function setHideTimer(elapseVal) { clearTimeout(hideTimer); hideTimer = setTimeout("hideRollover()", elapseVal); } var isOpera = (navigator.userAgent.indexOf('Opera') != -1); var isIE = (!isOpera && navigator.userAgent.indexOf('MSIE') != -1) function getX(e) { var posx; if (e.pageX) { posx = e.pageX; } else if (e.clientX) { posx = e.clientX; if (isIE) { posx += top.document.documentElement.scrollLeft + top.document.body.scrollLeft; } } return posx; } function getY(e, offset) { var defaultOffset = 66; var posy; if (e.pageY) { posy = e.pageY; } else if (e.clientY) { posy = e.clientY; if (isIE) { posy += top.document.documentElement.scrollTop + top.document.body.scrollTop; } } if (offset == undefined) { posy -= defaultOffset; } else { posy -= offset } return posy; } /*START S2S small format Changes */ function showExpressContentRollover(x, y) { expressStoreInfo = 'Our newest addition,
' +'Walmart Express, delivers
' +'Every Day Low Prices in a
' +'small store that is easy to shop.
'; isRolloverShown = true; setHideTimer(MIN_DISPLAY_TIME); resetRollover(); WALMART.$("#ROLLOVER_OTHER_TEXT").show(); WALMART.$("#ROLLOVER_OTHER_TEXT").html(expressStoreInfo); WALMART.$('#ROLLOVER').wmBubble('position', {top:(y-85),left:x}); WALMART.$('#ROLLOVER').wmBubble('update', WALMART.$('#ROLLOVER').html()); WALMART.$('#ROLLOVER').wmBubble('show'); }/*END S2S small format Changes */We're Sorry, This Item is Out of Stock.
Loading...
Loading...
Loading...
- Recently Viewed Items
- You don't have any recently viewed items
- Top Searched Items in iPods & MP3 Players
- Other Related Searches
- ?
- ? Store pickup - Select option(s) above to see your pickup
choices.
- ? Free store pickup with
- ? Free store pickup with
near:
Getting the products you need is even easier with our free pickup options. Just give us your ZIP code, select a preferred store, and we\'ll be able to tell you what items are available to pick up today or can be shipped to your local store ? free.
- ? Free pickup from a store or FedEx Office?
Shipping this to your store will take 5-10 business days.
Check More Stores to see if it's available sooner.Shipping this to your store or FedEx Office will take 5-10 business days.
Check More Stores to see if it's available sooner. - ? Free store pickup
-
? Free store pickup in [Store location]
-
? Electronic delivery via email after purchase
??
This home free?item counts towards free shipping on a qualifying $45 orderShop for items labeled home free. When you spend $45 on Home Free items, you'll get free shipping on those items. Other fees may apply if shipping outside the contiguous U.S.
????Free standard shipping on eligible
$45 orders with home free????97? shipping
????Free Shipping
- Electronic delivery via email after purchase
-
?
- Store information not available.
- Store information not available.
Please visit your local store to see if this item is in stock.
? Ship to home is not available for this product.
Online
$179.00
List Price: $199.99
You Save: $20.99?(10%)
Please select your options before adding to cart
Please select your options before adding to cart
Please select your options before adding to cart
Not Available at this time
In stock for:
Out of stock online Email me when in stock
Coming Soon
Preorder Now
Preorders Sold Out
Please check back on or after 12/05/2011.
Please enter a valid 5-digit ZIP Code.
* This item is being discontinued. Availability is limited.
Out of stock for shipping to home.
Please enter a valid 5-digit ZIP Code.
Show this number 0088590949723?to a Walmart associate to find this item in your store.
Product availability, styles, promotions and prices may vary between stores and online. Product availability, styles, promotions and prices may vary between stores and online.
Order now and we'll send you an email or a text when it's ready to pick up.
Not ready to come in today? Don't worry - we'll hold it for 14 days.
The world's most popular portable gaming device is now even more fun. Listen to your favorite albums. Send text messages over Wi-Fi with iMessage. Record HD video. Make FaceTime calls. iPod touch even works with iCloud, which stores your content and pushes it to all your devices.
Apple iPod touch 32GB (4th Gen), Black:
- Available in both black and white
- Free text messaging over Wi-Fi with iMessage
- Front and back cameras for HD video recording
- FaceTime video calling
- iOS 5 with over 200 new features
- Game Center with more than 60 million members
- App Store with more than 500,000 apps, including over 100,000 games and entertainment titles
- iTunes Store with millions of songs, movies, and TV shows
- iCloud, which wirelessly pushes your content to all your devices4
- Rich HTML email
- Safari web browser
- Wi-Fi and Bluetooth wireless technology
- Activation and setup over Wi-Fi
- Nike+ support built in
- Apple Earphones
Note:
- Wi-Fi Internet access is required for some features; broadband recommended; fees may apply. Some features, applications, and services are not available in all areas. Application availability and pricing are subject to change.
- 1GB = 1 billion bytes; actual formatted capacity less.
- Requires a FaceTime-enabled Mac with an Internet connection or a FaceTime-enabled iOS device with a Wi-Fi connection. Not available in all areas.
- App count refers to the total number of apps worldwide.
Safety Alert: Due to federal restrictions, this item cannot be returned by air mail. Customers in Hawaii, Alaska, Puerto Rico and other overseas locations can return this item to a Walmart store. See our returns policy for more information.
General | |
Depth: | 0.3 in |
Enclosure Color: | White |
Height: | 4.3 in |
Product Type: | Digital player |
Weight: | 3.6 oz |
Width: | 2.3 in |
Interface Supported: | Hi-Speed USB, Wi-Fi, Bluetooth 2.1 EDR |
Audio System | |
Additional Features: | Phone book, calendar, notes, VoiceOver, pedometer, YouTube streaming, Voice Control, Voice Memos, calculator, multi-touch interface, web browsing, Nike + iPod support, FaceTime, Game Center, two built-in digital cameras, three-axis gyro sensor, video recording (720p), accelerometer, Apple AirPlay support, AirPrint, iCloud support |
Equalizer: | Yes |
Sound Output Mode: | Stereo |
Speaker System | |
Speaker(s): | 1 x speaker - built-in |
System Requirements | |
OS Required: | Microsoft Windows 7, Microsoft Windows Vista, Apple MacOS X 10.5.8 or later, Microsoft Windows XP Professional SP3, Microsoft Windows XP Home Edition SP3 |
Peripheral / Interface Devices: | USB port (compatible with 2.0 specification) |
Software Requirements: | iTunes 10.5 or later |
Connections | |
Connector Type: | 1 x docking station ? 1 x headphones ( mini-phone stereo 3.5 mm ) ? IEEE 802.11b/g/n (Wi-Fi) ? Bluetooth |
Miscellaneous | |
Cables Included: | 1 x USB cable |
Microphone | |
Type: | Microphone - built-in |
Headphones | |
Headphones Type: | Headphones - binaural - ear-bud |
Connectivity Technology: | Wired |
Sound Output Mode: | Stereo |
Impedance: | 32 Ohm |
More Information | |
Model No.: | MD057LL/A |
Shipping Weight (in pounds): | 0.5 |
Product in Inches (L x W x H): | 4.8?x?2.8?x?1.1 |
Walmart No.: | 551185689 |
Rated 4.8 out of 5 by 483reviewers.
Rated 4 out of 5 by seaglassgirl I touch was as expected. My daughter was thrilled w/ it and we haven't had any problems with it yet. Shipping was super speedy during the holiday season. Only comment was the size of the shipping box was enormous compared to the size of the ipod. 01/09/2012
Rated 4 out of 5 by forgetit137815462 i-pod works great but was suppose to come with an accessory kit that you check on but dos not get sent with it.ended up orderin another kit a fews days latter after kit did not come in a day or two 07/28/2012
Rated 5 out of 5 by Ditszy my grandson loves it. was bought for grandson he is very happy with it 01/13/2012
Rated 5 out of 5 by 3DFla It's a great thing to have... 01/12/2012
See All ReviewsA limited product warranty is included free for most items. With an optional Walmart Care Plan you can extend coverage up to 3 additional years. Walmart Care Plan Extended Warranties cover 100% of the cost for repair or replacement, including shipping charges for the exchange. See Details
We'll show you extended warranty options and pricing at checkout if applicable.
If you made your purchase in a Walmart store and would like to purchase a warranty Click HereGift options are not available for this item.
Enjoy Great Financing!
Make the most of your shopping experience with the Walmart Discover? or Walmart Credit Card.
Open a Walmart Credit Card, Spend $100 Today and Get $20 Back*
*Offer subject to credit approval
Learn More or Apply Now
No Payments + No Interest if Paid in Full in 6 Months!
Enjoy no payments for 6 months. You'll have 6 months with no payments, and no interest if paid in full within 6 months on orders over $250. Otherwise, interest will be charged from the original date of purchase. Bill Me Later is the quick, easy, secure way to buy online without using your credit card. Simply select Bill Me Later at checkout. Subject to credit approval.
See Terms
ew108
/catalog/product.do, /catalog/fusionItem.do
/include/dynamic/tiles/templates/item/fusionItem.jsp
brave Stephanie Rice Meet the Pyro Karen Klein Colorado fires supreme court summer solstice
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.