Jump to 0 top | 1 navigation | 2 content | 3 extra information (sidebar) | 4 footer | 5 toolbar


Content

NIKE Air Zoom Katana Cage II Running White Womens


NIKE Air Zoom Katana Cage II Running White Womens
To add to the Shopping Cart, please choose from the options below.

Product Description

 

  • Brand and Style - NIKEAir Zoom Katana Cage II
  • Size - 8.5
  • Width - Medium (B, M)
  • Color - White/Ic Blue-Mtllc Slvr-White
  • Material - Genuine Leather-Mesh Upper and Man Made Sole

 

addHandlers(); function addHandlers() { if (goVariationSet == null || AJSEventHandler == null || VariationSetEvent == null) { return; } goVariationSet.registerEvent(VariationSetEvent.DIMENSION_HOVER, new AJSEventHandler(null, notAvailableHover_handle)); goVariationSet.registerEvent(VariationSetEvent.DIMENSION_SELECTED, new AJSEventHandler(updateDimensionText_init, updateDimensionText_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updatePrice_init, updatePrice_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateAvail_init, updateAvail_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(null, updateOfferId_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateBuyButton_init, updateBuyButton_handle)); goVariationSet.registerEvent(VariationSetEvent.VARIATION_SELECTED, new AJSEventHandler(updateImage_init, updateImage_handle)); var buybtn = document.getElementById('buybutton'); var form = document.buybox; if (buybtn != null && form != null) { if (document.body.addEventListener) { buybtn.addEventListener('mouseover', buyButtonMouseover, false); buybtn.addEventListener('mouseout', buyButtonMouseout, false); form.addEventListener('submit', cartSubmit, false); } else { buybtn.attachEvent('onmouseover', buyButtonMouseover); buybtn.attachEvent('onmouseout', buyButtonMouseout); form.attachEvent('onsubmit', cartSubmit); } } } function updateDimensionText_init() { var spans = document.getElementsByTagName("span"); for (var i = 0; i < spans.length; i++) { if (spans[i].className == "dimensionSelectorLabel") { spans[i].innerHTML = AJSStrings.get("choose one"); } } } function updateDimensionText_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_SELECTED) return; var dn = event.dimensionName; var element = document.getElementById('dimensionSelectorLabel_' + dn); if (element) { var value = event.dimensionValue; if (value == null) { value = AJSStrings.get("choose one"); } element.innerHTML = value; } } function notAvailableHover_handle(event) { if (!event.type || event.type != VariationSetEvent.DIMENSION_HOVER || goVariationSet == null) return; var div = document.getElementById('variationNotAvailable'); if (div == null) return; var dn = event.dimensionName; var dv = event.dimensionValue; if (dn == null && dv == null) { div.style.display = 'none'; } else if (!goVariationSet.isDimensionValueAvailable(dn, dv)) { var dims = goVariationSet.getAllConstraints(); dims[dn] = dv; var out = AJSStrings.get("Not available in") + ''; for (var d in dims) { out += AJSStrings.getFallback(d) + ': ' + dims[d] + "<\/span>"; } var img = document.getElementById('detailProductImage'); var width = (img == null) ? 180 : img.width + 10; div.style.width = width; div.innerHTML = out; div.style.display = 'block'; } } function updatePrice_init() { var offerPrice = document.getElementById('detailOfferPrice'); var listPrice = document.getElementById('detailListPrice'); if (offerPrice == null) return; this.defaultPrice = offerPrice.innerHTML; if (listPrice != null) { this.defaultListPrice = listPrice.innerHTML; } } function updatePrice_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var offerPrice = document.getElementById('detailOfferPrice'); var listPrice = document.getElementById('detailListPrice'); if (offerPrice == null) return; var variation = event.variation; if (variation != null) { if (variation.attrs.Price) { offerPrice.innerHTML = variation.attrs.Price; } if (listPrice != null && variation.attrs.ListPrice && (variation.attrs.ListPriceAmount > variation.attrs.PriceAmount)) { listPrice.innerHTML = variation.attrs.ListPrice; } } else { offerPrice.innerHTML = this.defaultPrice; if (listPrice != null) { listPrice.innerHTML = this.defaultListPrice; } } } function updateAvail_init() { var element = document.getElementById('dimSelectAvailability'); if (element == null) return; this.defaultAvailability = element.innerHTML; } function updateAvail_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var element = document.getElementById('dimSelectAvailability'); if (element == null) return; var variation = event.variation; if (variation != null) { var text = ""; if (variation.attrs.Availability) { text = variation.attrs.Availability; } if (variation.attrs.MerchantName) { if (text != "" && !text.match(/\.\s*$/)) { text += '.'; } text += " " + AJSStrings.get('Ships from sold by') + " " + variation.attrs.MerchantName; } element.innerHTML = text; } else if (this.defaultAvailability != null) { element.innerHTML = this.defaultAvailability; } } function updateOfferId_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var form = document.buybox; if (form == null || form.dynASIN == null || form.dynOfferId == null) return; var variation = event.variation; if (variation != null && variation.attrs.OfferListingId != null && variation.attrs.Asin != null) { form.dynASIN.value = variation.attrs.Asin; form.dynOfferId.value = variation.attrs.OfferListingId; } else { form.dynASIN.value = ''; form.dynOfferId.value = ''; } } function updateBuyButton_init() { var element = document.getElementById('buybutton'); if (element == null) return; element.style.cursor = "not-allowed"; } function updateBuyButton_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var element = document.getElementById('buybutton'); if (element == null) return; if (event.variation == null) { element.style.cursor = "not-allowed"; } else { element.style.cursor = "pointer"; } } function buyButtonMouseover(event) { if (goVariationSet == null) return; if (goVariationSet.selectedVariation == null) { var div = document.getElementById('chooseVariationBFCartAdd'); if (div != null) { div.style.display = 'block'; } } } function buyButtonMouseout(event) { var target = (event.target) ? event.target : event.srcElement; var div = document.getElementById('chooseVariationBFCartAdd'); if (div != null) { div.style.display = 'none'; } } function cartSubmit(event) { if (goVariationSet == null || goVariationSet.selectedVariation != null) { return true; } else { if (event.preventDefault) { event.preventDefault(); } return false; } } function updateImage_init() { var img = document.getElementById('detailProductImage'); if (img) { this.defaultImage = img.src; } var link = document.getElementById('imageViewerLink'); if (link) { this.defaultHref = link.href; // replace current asin with a generic url for subsitutions this.baseHref = link.href.replace(/\/images\/\w{10}/, "/images/%ASIN%"); } } function updateImage_handle(event) { if (!event.type || event.type != VariationSetEvent.VARIATION_SELECTED) return; var img = document.getElementById('detailProductImage'); var link = document.getElementById('imageViewerLink'); var variation = event.variation; var imgsrc, href; if (variation && variation.attrs.ImageURL) { imgsrc = variation.attrs.ImageURL; href = this.baseHref.replace(/%ASIN%/, variation.attrs.Asin); } else { imgsrc = this.defaultImage; href = this.defaultHref; } if (img) img.src = imgsrc; if (link) link.href = href; } function registerNamespace(ns) { var parts = ns.split("."); var root = window; for(var i = 0; i < parts.length; i++) { if(!root[parts[i]]) { root[parts[i]] = new Object(); } root = root[parts[i]]; } } registerNamespace('Associates.Util'); Associates.Util.getElementsByTagAndClass = function(tag, class_name, parent_element) { if(!parent_element){ parent_element = document; } var tags = parent_element.getElementsByTagName(tag); var class_tags = new Array(); var class_regex = new RegExp("\\b" + class_name + "\\b"); for (var i = 0; i < tags.length; i++) { if(tags[i].className.match(class_regex)) { class_tags.push(tags[i]); } } return class_tags; } Associates.Util.findAncestor = function(child, test) { var test_func; if(typeof test == 'object') { test_func = function(obj){ return obj == test }; } else if (typeof test == 'string') { test_func = function(obj){ return obj.nodeName == test }; } else { test_func = test; } while(child && !test_func(child)) { child = child.parentNode; } return child; } Associates.Util.getSelectedRadio = function(form, radioName) { if (typeof form == 'string') { form = document.forms[form]; } for (var i = 0; i < form[radioName].length; i++) { if (form[radioName][i].checked) { return form[radioName][i].value; } } return undefined; } function AttachEventListener(object, event, handler, useCapture) { if( !useCapture ) { useCapture = false; } if( object.addEventListener ) { object.addEventListener(event, handler, useCapture); } else { object.attachEvent('on' + event, handler); } } registerNamespace('Assoc.DOMEvent'); Assoc.DOMEvent.AddHandler = function(object, event, handler, context) { var event_handler; if(context) event_handler = function(event){ handler.call(context, event) }; else event_handler = handler; AttachEventListener(object, event, event_handler); } function GetEventTarget(event) { return (event.target)? event.target : event.srcElement; } //borrowed from quirksmode. Stops event bubbling. function StopEventPropagation(event) { if(!event) { event = window.event; } //MSIE event.cancelBubble = true; //w3c if(event.stopPropagation) { event.stopPropagation(); } } function StopEventDefault(event) { if(!event) { event = window.event; } //MSIE event.returnValue = false; //w3c if(event.preventDefault) { event.preventDefault() }; } //does both StopEventPropogation and StopEventDefault function StopEvent(event) { StopEventDefault(event); StopEventPropagation(event); } function mouseOverFromElement(event) { return (event.relatedTarget)? event.relatedTarget : event.fromTarget; } function mouseOutToElement(event) { return (event.relatedTarget)? event.relatedTarget : event.toTarget; } var wImages; var link = document.getElementById('imageViewerLink'); function openImageViewer(event) { if (wImages == null || wImages.closed) { wImages = window.open(link.href, 'ImageView', 'width=625,height=700,scrollbars,resizable'); } else { wImages.location = link.href; } wImages.focus(); return false; } AttachEventListener(link, 'click', openImageViewer);

Product Details

  • Amazon Sales Rank: #2246 in Apparel & Accessories
  • Size: 8.5 M US, Medium (B, M)
  • Color: Silver
  • Brand: Nike
  • Dimensions: 2.00 pounds
<Read More>

Product Description

  • Brand and Style - NIKEAir Zoom Katana Cage II
  • Size - 8.5
  • Width - Medium (B, M)
  • Color - White/Ic Blue-Mtllc Slvr-White
  • Material - Genuine Leather-Mesh Upper and Man Made Sole

Product Details

  • Amazon Sales Rank: #2246 in Apparel & Accessories
  • Size: 8.5 M US, Medium (B, M)
  • Color: Silver
  • Brand: Nike
  • Dimensions: 2.00 pounds

51TZ31xGXSL
  • No ratings
  • No ratings
  • No ratings
  • No ratings
  • No ratings
  • 0 ratings
Pages: 1 (1 - 1 / 1)
counterXX