THANK YOU
견적올려주실 때 쉬핑비 포함한 전체 주문금액 모두 보이도록 올려주세요~!
통관시 발생되는 세금, 관부가세, 통관비 등은 주문하신 회원님께서 부담하셔야 합니다.
주문주실 때 품절시에 주문보류나 취소 요청이 없을경우, 품절이 있어도 주문완료를
우선으로 합니다.
공동구매대행인 경우, 일정량 주문이 모아져야 주문이 가능하므로,
주문 시 품절이 발생할 수 있고, 배송기간은 15일~20일 이상 소요됩니다.
주문서 작성 이후 주문취소, 장바구니수정, 변경은 불가능 합니다.
반드시 반품/교환에 대한 공지와 구매대행 약관 필독 후 이용해 주세요~!!
---------------------------------------------------------------------------
아래 칸에
/**
* TopNavDropDown
* @param {string} parentButton = id of parent button that triggers this drop down
* @param {string} thisName = base name of drop down container
* @return (string) button1 = division id (i.e. '51375')
* @return (string) button2 OPTIONAL = division id (i.e. '51375')
* @return (string) button3 OPTIONAL = division id (i.e. '51375')
* @return (string) button4 OPTIONAL = division id (i.e. '51375')
* @return (string) button5 OPTIONAL = division id (i.e. '51375')
* Can have a variable length of drop down buttons (i.e. button6)
* @author Jermaine Jackson
* @date 10/8/2009
*/
var TopNavDropDown = Class.create();
TopNavDropDown.prototype = {
initialize: function(parentButton, thisName, button1, button2, button3, button4, button5) {
this.contentID = '4813142';
this.objName = thisName + 'Button';
this.containerName = thisName + 'DropDownContainer';
this.buttonPrefix = thisName;
this.clearImage = '/assets/common/clear.gif';
this.parentButton = $(parentButton);
this.parentHighlightState = '';
this.parentDimState = '';
this.delayAmount = '500';
this.timeoutID = null;
this.buttons = Array(button1, button2, button3);
this.dropDownButtons = { 'buttons': [] };
this.initDimHighlightStates();
this.highligtOrDimParentButton();
this.initDropDownButtons();
},
initDropDownButtons: function() {
for (var i = 0; i < this.buttons.length; i++) {
if (typeof this.buttons[i] != 'undefined') {
this.dropDownButtons.buttons[i] = {
'divisionID': this.buttons[i],
'cssClass': 'topnavSprite_division' + this.buttons[i] + '_notSelected'
}
}
}
},
/**
* initDimHighlightStates
* set parent button's highlight and dim classNames
*/
initDimHighlightStates: function() {
thisState = this.parentButton.className;
if (thisState.indexOf('_selected') > 0) {
this.parentHighlightState = thisState;
this.parentDimState = thisState.replace('_selected', '_notSelected');
}
else {
this.parentHighlightState = thisState.replace('_notSelected', '_selected');
this.parentDimState = thisState;
}
},
showDropDown: function() {
var self = this;
var xyPos = Position.cumulativeOffset(self.parentButton);
var xPos = xyPos[0] + 4;
var yPos = xyPos[1] + this.parentButton.offsetHeight;
this.cancelTimer();
if (this.container == null) {
var j = 0;
styleStr = 'left:' + xPos + 'px;'
+ 'top:' + yPos + 'px;'
+ 'width:87px;'
+ 'position:absolute;'
+ 'display:none;'
+ 'z-index:9001;'
+ 'margin-left:0px;';
var dropDownContainer = Builder.node(
'div', { id: self.containerName, style: styleStr });
for (j = 0; j < this.dropDownButtons.buttons.length; j++) {
var thisDivisionID = this.dropDownButtons.buttons[j].divisionID;
var thisButtonID = this.objName + '_division' + thisDivisionID;
var thisCSSClass = this.dropDownButtons.buttons[j].cssClass;
var newButton = Builder.node('div', { id: thisButtonID + '_container' });
var newLink = Builder.node(
'a', {
href: '/browse/division.do?cid=' + thisDivisionID,
[안내]태그제한으로등록되지않습니다-xxonmouseover: this.objName + ".highlight('" + thisButtonID + "','" + thisCSSClass + "');",
[안내]태그제한으로등록되지않습니다-xxonmouseout: this.objName + ".dim('" + thisButtonID + "','" + thisCSSClass + "');"
});
var newDropDownImage = Builder.node(
'img', {
id: thisButtonID,
className: thisCSSClass,
src: self.clearImage
});
newLink.appendChild(newDropDownImage);
newButton.appendChild(newLink);
dropDownContainer.appendChild(newButton);
}
$('divisionContainer').appendChild(dropDownContainer);
this.container = $(this.containerName);
}
//if drop down isn't showing then show it
//if it is showing and this is a touchscreen, then go to parent division url
if(womenButton.container.style.display == 'none'){
//drop down is hidden, show it
this.container.style.left = xPos + 'px';
this.container.style.top = yPos + 'px';
//this.container.style.zIndex = "9001";
new Effect.Appear(self.container, { duration: .3 });
}else if(womenButton.container.style.display == '' && typeof window['Touch'] != 'undefined'){
//this is a touchscreen and the drop is visible so link to parent button url
division = this.parentButton.id;
division = division.substr(division.indexOf("division")+8);
top.location.href = '/browse/division.do?cid=' + division;
}
},
highligtOrDimParentButton: function() {
var dimParent = true;
var docTitle = document.title;
/* separate checks for each drop down (i.e. baby, women, etc...)
check if this is a baby/newborn page/category/giftguide page
if Gift Guide Baby pages, dim parent button
else if this is a Baby page, highlight parent
else default to dim state
*/
if (this.buttonPrefix == "baby") {
if (docTitle.indexOf("Women's Clothes:") >= 0 || docTitle.indexOf('Maternity Clothes:') >= 0 ||
docTitle.indexOf("Women's Plus Size Clothes:") >= 0 || docTitle.indexOf("Men's Clothes:") >= 0 ||
docTitle.indexOf("Girl's Clothes:") >= 0 || docTitle.indexOf("Boy's Clothes:") >= 0
) {
this.parentButton.className = this.parentDimState;
}
else if (docTitle.indexOf('Baby Girl') >= 0 || docTitle.indexOf('Baby Boy') >= 0 || docTitle.indexOf('Newborn') >= 0 || gidLib.getQuerystringParam('cid') == '51350') {
this.parentButton.className = this.parentHighlightState;
//remove the built in [안내]태그제한으로등록되지않습니다-xxonmouseout/over handlers since we are on a baby page
}
else {
this.parentButton.className = this.parentDimState;
}
}
else if (this.buttonPrefix == "women") {
//if (s) {
if (typeof s != "undefined") {
if (s.channel) {
thisChannel = s.channel;
if (thisChannel.indexOf(this.buttonPrefix) >= 0) {
this.parentButton.className = this.parentDimState;
}
}
}
}
},
highlight: function(thisButton, thisClassName) {
this.cancelTimer();
var newClassName = thisClassName.replace('_notSelected', '_selected');
$(thisButton).className = newClassName;
this.highligtOrDimParentButton();
},
//called from drop down button
dim: function(thisButton, thisClassName) {
this.setTimer();
var newClassName = thisClassName.replace('_selected', '_notSelected');
$(thisButton).className = newClassName;
},
hideDropDown: function() {
var self = this;
this.highligtOrDimParentButton();
new Effect.Fade(self.container, { duration: .3 });
this.cancelTimer();
},
setTimer: function() {
var self = this;
//use longer delay for touchscreens
var delayAmount = typeof window['Touch'] == 'undefined' ? self.delayAmount : self.delayAmount * 4;
//debug
delayAmount = self.delayAmount * 4;
this.timeoutID = setTimeout(
function() {
self.hideDropDown();
},
delayAmount
);
},
cancelTimer: function() {
clearTimeout(this.timeoutID);
}
};
var womenShowDropDownHandler = function() { womenButton.showDropDown(); };
var womenHideDropDownHandler = function() { womenButton.setTimer(); };
var womenButton;
if(location.pathname != "/checkout/order.do"){
Event.observe(window, "load", function() {
womenButton = new TopNavDropDown('division5360', 'women', '49708', '49709');
var parentWomenButton = $('division5360');
if (parentWomenButton != null) {
//check for touchscreens
if(typeof window['Touch'] == 'undefined'){
parentWomenButton.[안내]태그제한으로등록되지않습니다-xxonmouseover = womenShowDropDownHandler;
parentWomenButton.[안내]태그제한으로등록되지않습니다-xxonmouseout = womenHideDropDownHandler;
}else{
//for touchscreen devices...
parentWomenButtonURL = parentWomenButton.up().href;
parentWomenButton.up().removeAttribute("href");
parentWomenButton.[안내]태그제한으로등록되지않습니다-xxonmousedown = womenShowDropDownHandler;
parentWomenButton.[안내]태그제한으로등록되지않습니다-xxonmouseup = womenHideDropDownHandler;
}
}
});
}
var topNav = {
divisionOver : function(thisButtonId, isSelected){
var thisButton = $(thisButtonId);
var thisClass = thisButton.className;
if(thisClass.indexOf("_selected") < 0 ){
thisButton.className = "topnavSprite_" + thisButtonId + "_selected";
}else{
thisButton.parentNode.setAttribute("[안내]태그제한으로등록되지않습니다-xxonmouseout", "topNav.divisionOut('" + thisButtonId + "', true);");
}
},
divisionOut : function(thisButtonId, isSelected){
if(!isSelected){
$(thisButtonId).className = "topnavSprite_" + thisButtonId + "_notSelected";
}
}
};
Store Search:
function omniQuickButton(){
s.linkTrackVars='eVar6';
s.eVar6='NewOldNavy_Quickbutton';
s.tl(this,'o',s.eVar6);
window.open('http://www.thenewoldnavy.com/','on','location=yes,toolbar=yes,directories=yes,menubar=yes,scrollbars=yes,resizable=yes,width=990,height=800');}
if (!navigationService.model.isActive) {
var searchDiv = $('topSearch');
if (searchDiv) {
searchDiv.style.display = "block";
}
}
Main Content
if(!(reportingService||{}).isActive) {
omni.objShoppingBag.strProducts = "896143^,^3^,^^,^1^,^10.00^,^Monkey^,^18-24 M^,^8961430121824||896147^,^3^,^^,^1^,^10.00^,^Monkey^,^18-24 M^,^8961470021824";
omni.setViewBag();
}
else {
reportingService.controller.viewManagers.commonViewManager.model.shoppingBag.products = "896143^,^3^,^^,^1^,^10.00^,^Monkey^,^18-24 M^,^8961430121824||896147^,^3^,^^,^1^,^10.00^,^Monkey^,^18-24 M^,^8961470021824";
}
var PreloadManager = Class.create();
PreloadManager.prototype = {
initialize:function() {
},
constants:{
},
model:{
isMobileBrowserToRedirect:false
},
controller:{
init:{
main:function() {
var preloadFiles = preloadManager.controller.init.preloadFiles;
processingService.api.addApplicationMethodToRegistry(preloadFiles, "preloadManager.controller.preloadFiles");
},
preloadFiles:function() {
var secureUrlPrefix = gidBrandSiteConstruct.gidBrandSites[gidBrandSiteConstruct.currentBrandCode].secureUrl;
preloadManager.model.isMobileBrowserToRedirect = browserService.controller.managers.mobileBrowserManager.controller.isMobileBrowserToRedirect();
if (!preloadManager.model.isMobileBrowserToRedirect && !preloadManager.controller.isIPad()) {
// Preload xxjavascript
var checkoutOptimizedPath = "/120855890/optimizedBundles/checkoutOptimized.js";
var checkoutOptimizedSrc = secureUrlPrefix + checkoutOptimizedPath;
var tealeafOptimizedSrc = secureUrlPrefix + tealeafOptimizedPath;
if (clientBrowser.isIE) {
var s = document.createElement('script');
s.src = checkoutOptimizedSrc;
s.type = "text/cache";
document.getElementsByTagName('head')[0].appendChild(s);
s = document.createElement('script');
s.src = tealeafOptimizedSrc;
s.type = "text/cache";
document.getElementsByTagName('head')[0].appendChild(s);
} else {
var checkoutObject = document.createElement('object');
checkoutObject.data = checkoutOptimizedSrc;
checkoutObject.width = 0;
checkoutObject.height = 0;
document.body.appendChild(checkoutObject);
var tealeafObject = document.createElement('object');
tealeafObject.data = tealeafOptimizedSrc;
tealeafObject.width = 0;
tealeafObject.height = 0;
document.body.appendChild(tealeafObject);
}
}
// Preload images
universalButtonsImage = new Image();
universalButtonsImage.src = secureUrlPrefix + "/content/0002/158/853/universal_button_sprite.gif";
var universalBarPath = "/content/0002/477/584/";
universalBarSpritesImage = new Image();
universalBarSpritesImage.src = secureUrlPrefix + universalBarPath + "universal_bar_sprites.png";
universalBarBkgImage = new Image();
universalBarBkgImage.src = secureUrlPrefix + universalBarPath + "universalBar_bkg.png";
universalBarAboveTabsBkgImage = new Image();
universalBarAboveTabsBkgImage.src = secureUrlPrefix + universalBarPath + "universalBar_aboveTabs_bkg.png";
clearImage = new Image();
clearImage.src = secureUrlPrefix + "/assets/common/clear.gif";
loadIndicatorImage = new Image();
loadIndicatorImage.src = secureUrlPrefix + "/gid/assets/common/en_US/loadIndicator24.gif";
interstitialLCImage = new Image();
interstitialLCImage.src = secureUrlPrefix + "/gid/assets/common/en/interstitial_lc.gif";
interstitialRCImage = new Image();
interstitialRCImage.src = secureUrlPrefix + "/gid/assets/common/en/interstitial_rc.gif";
}
},
isIPad:function() {
if (navigator.userAgent.match(/iPad/i) != null) { return true; }
return false;
}
}
}
var preloadManager = new PreloadManager();
preloadManager.controller.init.main();
장바구니 붙여넣기 해주세요~!!
비밀글 해당 댓글은 작성자와 운영자만 볼 수 있습니다.12.04.05 12:08
비밀글 해당 댓글은 작성자와 운영자만 볼 수 있습니다.12.04.05 17:57