+ | + |
| |||||
| |||||
| |
| |
+ | + |
An error occurred, please try again
'); jQuery('#B0009PAMXQsellerInfo').replaceWith('An error occurred, please try again
'); jQuery('#B0029ZAP40sellerInfo').replaceWith('An error occurred, please try again
'); }, success: function(data,status) { jQuery('#B000KGAFTUsellerInfo').replaceWith(data.bxgyB000KGAFTU); jQuery('#B0009PAMXQsellerInfo').replaceWith(data.bxgyB0009PAMXQ); jQuery('#B0029ZAP40sellerInfo').replaceWith(data.bxgyB0029ZAP40); var isXChecked = jQuery("#bxgy_x_check[checked=1]").size(); var isYChecked = jQuery("#bxgy_y_check[checked=1]").size(); var isZChecked = jQuery("#bxgy_z_check[checked=1]").size(); if (!isXChecked) { jQuery("#xInfoWrapper > p").addClass("unselected"); jQuery("#xInfoWrapper a").click(function() { return false; }); } if (!isYChecked) { jQuery("#yInfoWrapper > p").addClass("unselected"); jQuery("#yInfoWrapper a").click(function() { return false; }); } if (!isZChecked) { jQuery("#zInfoWrapper > p").addClass("unselected"); jQuery("#zInfoWrapper a").click(function() { return false; }); } } }); } } else { bxgy_update_seller_text(0); zSellerInfo.toggle(); ySellerInfo.toggle(); xSellerInfo.toggle(); jQuery(".shoveler:first").trigger("resize"); } }; bxgy_update_seller_text = function(isExpand) { var isXChecked = jQuery("#bxgy_x_check[checked=1]").size(); var isYChecked = jQuery("#bxgy_y_check[checked=1]").size(); var isZChecked = jQuery("#bxgy_z_check[checked=1]").size(); var cartCount = isXChecked + isYChecked + isZChecked; if (cartCount == 1) { jQuery(".bxgySellerMessage").html((isExpand) ? bxgyDefaultMsgHide : bxgyDefaultMsgShow); } else if (cartCount == 3) { jQuery(".bxgySellerMessage").html((isExpand) ? bxgyAllMsgHide : bxgyAllMsgShow); } else if (cartCount == 2) { if (!isXChecked) jQuery(".bxgySellerMessage").html((isExpand) ? bxgyYZMsgHide : bxgyYZMsgShow); else if (!isYChecked) jQuery(".bxgySellerMessage").html((isExpand) ? bxgyXZMsgHide : bxgyXZMsgShow); else jQuery(".bxgySellerMessage").html((isExpand) ? bxgyXYMsgHide : bxgyXYMsgShow); } jQuery("#bxgy_seller_exposed").click(function() { bxgy_toggle_seller_info(); return false; }).show(); }; bxgy_update_price = function() { var priceBlock = jQuery("#bxgy_price_button_block"); var buyingPrice = jQuery("#bxgy_bp"); var buyingPriceT = jQuery("#bxgy_bpt"); var points = jQuery("#bxgy_pt"); var pointsT = jQuery("#bxgy_ptt"); var isXChecked = jQuery("#bxgy_x_check[checked=1]").size(); var isYChecked = jQuery("#bxgy_y_check[checked=1]").size(); var isZChecked = jQuery("#bxgy_z_check[checked=1]").size(); var cartCount = isXChecked + isYChecked + isZChecked; priceBlock.removeClass().addClass("bxgyPriceBlock" + cartCount + "Asin"); var buyingPriceValue = buyingPrices[0]*isXChecked + buyingPrices[1]*isYChecked + buyingPrices[2]*isZChecked; buyingPriceValue = bxgy_format_number(buyingPriceValue); buyingPrice.html(buyingPrice.html().replace(/([0-9\.,]+)/,buyingPriceValue.toString())); buyingPriceT.html(bxgyBPTexts[cartCount]); var mapItemChecked = (isXChecked && bxgyBreaksMAP[0]) || (isYChecked && bxgyBreaksMAP[1]) || (isZChecked && bxgyBreaksMAP[2]); buyingPrice[(mapItemChecked) ? "hide" : "show"](); jQuery("#bxgy_map")[(mapItemChecked) ? "show" : "hide"](); if (jQuery("#bxgy_map").is(":visible")) { if (cartCount > 1) { jQuery("#bxgy_map").html(mapText); } else { jQuery("#bxgy_map").html(mapTextSingleAsin); } } var needsHUCFlip = (isXChecked*bxgyHUCFlipFlags[0] || isYChecked*bxgyHUCFlipFlags[1] || isZChecked*bxgyHUCFlipFlags[2]); jQuery("#bxgyHUCFlip").val(needsHUCFlip); if (points.size() && pointsT.size()) { var totalPoints = isXChecked*bxgyPoints[0] + isYChecked*bxgyPoints[1] + isZChecked*bxgyPoints[2]; var totalMonetaryValue = isXChecked*bxgyPointsMonetaryValue[0] + isYChecked*bxgyPointsMonetaryValue[1] + isZChecked*bxgyPointsMonetaryValue[2]; var buyingValue = buyingPrices[0]*isXChecked + buyingPrices[1]*isYChecked + buyingPrices[2]*isZChecked; if (totalPoints > 0) { var pointsValue = totalPoints.toString() + bxgyPointsSuffix; var pointsPercent = parseInt((totalMonetaryValue * 100 / buyingValue) + 0.5); if (pointsPercent > 0) { pointsValue += ' (' + pointsPercent.toString() + '%)'; } points.html(pointsValue); pointsT.show(); points.show(); } else { pointsT.hide(); points.hide(); } } }; /* * Special currency specific logic has been added at the end * because of the way currencies get formatted. For eg. price of * 2124.37 gets displayed as 2,124.37 in USD+GBP, 2.124,37 in EUR * and JPY never displays fractional digits. */ bxgy_format_number = function(num) { var fraction = num - parseInt(num); fraction = fraction.toFixed(2); if (num == fraction) {return fraction.toString(); } var str = fraction.toString(); str = str.replace("0.","."); var n = parseInt(num); var i = 0; while (n > 0) { var d = n % 10; n = parseInt(n / 10); str = d.toString() + str; i++; if ((i % 3 == 0) && (n > 0)) { str = "," + str; } } if (bxgyCurrencyCode == "EUR") { str = str.replace(/,/,"+"); str = str.replace(/\./,","); str = str.replace(/\+/,"."); } else if (bxgyCurrencyCode == "JPY") { str = str.replace(".00",""); } return str; }; bxgy_update_opacity = function(imgId, state) { var isXChecked = jQuery("#bxgy_x_check[checked=1]").size(); var isYChecked = jQuery("#bxgy_y_check[checked=1]").size(); var isZChecked = jQuery("#bxgy_z_check[checked=1]").size(); var cartCount = isXChecked + isYChecked + isZChecked; var isExpand = jQuery("ul.bxgySelectAsins > li > div").is(":visible"); if (isXChecked) { jQuery("#bxgy_x_title").removeClass(); jQuery("#xInfoWrapper > p").removeClass("unselected"); jQuery("#xInfoWrapper a").unbind("click"); } else { jQuery("#bxgy_x_title").addClass("unselected"); jQuery("#xInfoWrapper > p").addClass("unselected"); jQuery("#xInfoWrapper a").click(function() { return false; }); } if (isYChecked) { jQuery("#bxgy_y_title").removeClass().unbind("click"); jQuery("#yInfoWrapper > p").removeClass("unselected"); jQuery("#yInfoWrapper a").unbind("click"); } else { jQuery("#bxgy_y_title").addClass("unselected").click(function() { return false; }); jQuery("#yInfoWrapper > p").addClass("unselected"); jQuery("#yInfoWrapper a").click(function() { return false; }); } if (isZChecked) { jQuery("#bxgy_z_title").removeClass().unbind("click"); jQuery("#zInfoWrapper > p").removeClass("unselected"); jQuery("#zInfoWrapper a").unbind("click"); } else { jQuery("#bxgy_z_title").addClass("unselected").click(function() { return false; }); jQuery("#zInfoWrapper > p").addClass("unselected"); jQuery("#zInfoWrapper a").click(function() { return false; }); } var toggleYPlus = ((imgId == "bxgy_x_img") && isYChecked) || ((imgId == "bxgy_y_img") && isXChecked); var toggleZPlus = ((imgId == "bxgy_z_img") && (isXChecked || isYChecked)) || ((imgId == "bxgy_y_img") && !isXChecked && isZChecked) || ((imgId == "bxgy_x_img") && !isYChecked && isZChecked); var delay = 300; jQuery('#bxgy_price_button_block').fadeOut(delay); jQuery('#bxgy_cartadd_button').fadeOut(delay); setTimeout("bxgy_update_price()", delay+100); setTimeout("bxgy_update_cart()", delay+100); if (bxgy_update_seller_text) { setTimeout("bxgy_update_seller_text(" + isExpand + ")", delay+100); } if (cartCount > 0) { setTimeout( "jQuery('#bxgy_price_button_block').fadeIn(" + delay + ")", delay+250); setTimeout( "jQuery('#bxgy_cartadd_button').fadeIn(" + delay + ")", delay+250); } setTimeout("bxgy_update_wl()", delay+100); if (cartCount > 0) { setTimeout( "jQuery('#bxgy_wl_button_block').fadeIn(" + delay + ")", delay+250); } if (state == 0) { jQuery("#"+imgId).fadeOut(delay); if (toggleYPlus) { jQuery("#bxgy_y_plus").fadeOut(delay); } if (toggleZPlus) { jQuery("#bxgy_z_plus").fadeOut(delay); } } else { setTimeout("jQuery('#" + imgId + "').fadeIn(" + delay + " + 250)", delay); if (toggleYPlus) { setTimeout("jQuery('#bxgy_y_plus').show().fadeIn(" + delay + ")", delay); } if (toggleZPlus) { setTimeout("jQuery('#bxgy_z_plus').show().fadeIn(" + delay + ")", delay); } } }; bxgy_update_wl = function() { var wlButton = jQuery("#bxgy_wl_button_block > input"); var cartCount = jQuery(".bxgySelectAsins :checkbox[checked=1]").size(); if (cartCount == 1) { wlButton.removeClass().addClass("wl-button-sprite button-margin wl_one").attr('alt','add to wishlist'); } else if (cartCount == 2) { wlButton.removeClass().addClass("wl-button-sprite button-margin wl_two").attr('alt','Add both to Wish List'); } else if (cartCount == 3) { wlButton.removeClass().addClass("wl-button-sprite button-margin wl_three").attr('alt','Add all three to Wish List'); } else { wlButton.removeClass(); } }; bxgy_update_cart = function() { var isXChecked = jQuery("#bxgy_x_check[checked=1]").size(); var isYChecked = jQuery("#bxgy_y_check[checked=1]").size(); var isZChecked = jQuery("#bxgy_z_check[checked=1]").size(); var cartAddButton = jQuery("#bxgy_cartadd > input"); var cartCount = jQuery(".bxgySelectAsins :checkbox[checked=1]").size(); if (cartCount == 0) { cartAddButton.removeClass(); } else if (cartCount == 1) { if ((isXChecked && bxgyIsPreorder[0]) || (isYChecked && bxgyIsPreorder[1]) || (isZChecked && bxgyIsPreorder[2])) { cartAddButton.removeClass().addClass("button-margin dpSprite s_preorderThis").attr('alt','Pre-order this item'); } else { cartAddButton.removeClass().addClass("button-margin dpSprite s_addToCart").attr('alt','Add to Cart'); } } else if (cartCount == 2) { if ((isXChecked && isYChecked && bxgyIsPreorder[0] && bxgyIsPreorder[1]) || (isYChecked && isZChecked && bxgyIsPreorder[1] && bxgyIsPreorder[2]) || (isZChecked && isXChecked && bxgyIsPreorder[2] && bxgyIsPreorder[0])) { cartAddButton.removeClass().addClass("button-margin dpSprite s_preorderBoth").attr('alt','Pre-order both items'); } else { cartAddButton.removeClass().addClass("button-margin dpSprite s_addBothToCart").attr('alt','Add both to Cart'); } } else if (cartCount == 3) { if (bxgyIsPreorder[0] && bxgyIsPreorder[1] && bxgyIsPreorder[2]) { cartAddButton.removeClass().addClass("button-margin dpSprite s_preorderAll3").attr('alt','Pre-order all three items'); } else { cartAddButton.removeClass().addClass("button-margin dpSprite s_add3ToCart").attr('alt','Add all three to Cart'); } } jQuery("#bxgy_x_quantity").html( (jQuery("#bxgy_x_check[checked=1]").size() == 0) ? "" : bxgy_fill_quantity(1) ); jQuery("#bxgy_y_quantity").html( (jQuery("#bxgy_y_check[checked=1]").size() == 0) ? "" : bxgy_fill_quantity(2) ); jQuery("#bxgy_z_quantity").html( (jQuery("#bxgy_z_check[checked=1]").size() == 0) ? "" : bxgy_fill_quantity(3) ); }; bxgy_fill_quantity = function(index) { var str = ''; str += ''; return str; }; bxgy_show_price = function() { jQuery("#bxgy_bp").show(); jQuery("#bxgy_map").hide(); }; bxgy_enable_check_boxes(); }); }
Product Features
|
Product Details
|
|
|
Share your thoughts with other customers:
| ||||||
Most Helpful Customer Reviews 38 of 39 people found the following review helpful:
4.0 out of 5 stars mom of 2 boys!,
By
Durability:5.0 out of 5 stars Fun:5.0 out of 5 stars Educational:5.0 out of 5 stars
This review is from: Step2 LifeStyle Custom Kitchen (Toy) My 4yr old got this from grandma for his birthday. He loves it!!! He has played non stop since I put it together. It was a little tricky putting it together and it did take some time. But it is WORTH it.. My 10 yr old also has had fun playing with it as well.
Help other customers find the most helpful reviews
48 of 51 people found the following review helpful:
4.0 out of 5 stars Excellent Kitchen and Excellent Value,
Durability:4.0 out of 5 stars Fun:5.0 out of 5 stars Educational:4.0 out of 5 stars
This review is from: Step2 LifeStyle Custom Kitchen (Toy) I bought this kitchen for my four year old daughter last year. I looked at many kitchens before purchasing this one. I wanted a sturdy plastic kitchen that was full-size and that had a refrigerator, drawers, and stove. This one fit the bill and was $100 less than very similar ones. My daughter very much enjoys playing with this. She's played with it regularly since we purchased it. She makes all sorts of meals and serves them to both my husband and me. It comes with some flatware, dishes and cups. I don't remember if it came with any food, but we've bought a few sets of food since. So, with the food we purchased, she makes pizza, cuts vegetables and fruits, serves sushi, cakes, etc. Sometimes she "makes" some very weird combinations, but has a grand time doing it! One reviewer expressed displeasure with this purchase and expressed his fear of the kitchen tipping over on his child. I used to have a similar kitchen when my older daughter was much younger. We put that one in a carpeted room and it's true-- it was unstable even though that kitchen was considered high quality. This one, however, we have in our own kitchen and it's very stable on our hard floor. I'd recommend putting these things on tile or wood rather than carpet for that very reason. The counters and main structure is made of very sturdy plastic. The refrigerator, oven, and microwave doors are made of the thinner, less sturdy plastic. All in all, although my husband wishes we could get rid of it already, my daughter likes this still. She definitely goes over to it at least once per day, usually more, and plays around with some part of it every day whether the pots and pans, foods, or phone. 34 of 35 people found the following review helpful:
4.0 out of 5 stars Great Product For Limited Space In Your Home...,
By
Durability:5.0 out of 5 stars Fun:3.0 out of 5 stars Educational:3.0 out of 5 stars
This review is from: Step2 LifeStyle Custom Kitchen (Toy) Okay...I am a mother of six. I purchased this product at Toys R Us but ended up returning it. I got this for my 16 mth old who LOVED THE KITCHEN...it was very durable and cute as can be and great quality but I felt for the money it was kinda boring. She liked playing with the phone that came with it and opening the drawers...but I was looking for one that was a little more interactive. The only sound this kitchen makes besides beeping noises on the battery operated phone is the stove made a bubbling or sizzling noise when you put the pots and pans on it. I took it back to Toys R Us and they ended up having a 20% coupon for any one item in the store so I got her the Step 2 DELUXE kitchen. It is a bit larger but has so many more features...the microwave,stove,oven, dishwasher,and telephone make noise...and it has a little light above the stove that turns on and off and even has the option of using an adaptor for the light instead of batteries. I felt for the extra money this would bring her many more years of enjoyment. In short...if you do not care about all the extra features than go for this item...it really is a cute little kitchen...otherwise I would recommend the Deluxe or even the Dream Kitchen which has all the features as the deluxe minus the dishwasher.
Share your thoughts with other customers: Create your own review
|
|
|
Tags Customers Associate with This Product(What's this?)Click on a tag to find related items, discussions, and people.
Check the boxes next to the tags you consider relevant or enter your own tags in the field below.
(Press the 'T' key twice to quickly access the "Tag this product" window.) |
|
This product's forum
Active discussions in related forums
Search Customer Discussions
|
|
|
Feedback
Your comments can help make our site better for everyone. |
FeedbackThanks for your feedback.We appreciate your effort to make our site better. Please note that we are unable to respond directly to all submissions made via this form. |
|
You have no recently viewed items.
After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in. Look to the right column to find helpful suggestions for your shopping session. |
Continue Shopping: Customers Who Bought Items in Your Recent History Also Bought Page 1 of 3 (Start over)
|
Recent Searches
| |
After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in. |
첫댓글 부피가 너무 큰관계로 위상품은 구매가 어렵습니다..죄송합니다..ㅠㅠ