').append($productImage.clone().attr('id', 'productImage2xWrapper').addClass('product-image-2x'));
$productImage2x.find('.image-zoom-region').remove();
$productImage.after($productImage2x);
var resizeImage2x = function()
{
$productImage2x.width($productImage.width());
};
$(window).resize(resizeImage2x);
resizeImage2x();
var $imageZoom = $productImage.find('.image-zoom-region');
var $productImage2xWrapper = $('#productImage2xWrapper');
var $pageWrapper = $('.page-wrapper');
var $img = $productImage.find('img');
$productImage.on('mousemove', function(e)
{
var width = $productImage.width(), height = 300;
var offset = $productImage.offset();
var x = e.pageX - offset.left, y = e.pageY - offset.top;
var position = $img.position();
var imgWidth = $img.width(), imgHeight = $img.height();
x = Math.max(position.left, Math.min(Math.min(width/2, position.left + imgWidth - width/2), x - width/4));
y = Math.max(position.top, Math.min(Math.min(height/2, position.top + imgHeight - height/2), y - height/4));
$imageZoom.css({left: x, top: y});
$productImage2xWrapper.css({left: -2*x, top: -2*y});
}).on('mouseleave', function(){$productImage2x.removeClass('show');})
.on('mouseenter', function(){$productImage2x.addClass('show');});
})
$(function(){
var code = '41010302002006';
var str = "

";
$('#copyright').append(str);
});
;
function loadCartInfo(twinkle)
{
$('#siteNav').load(createLink('misc', 'printTopBar'),
function()
{
if(twinkle)
{
bootbox.dialog(
{
message: v.addToCartSuccess,
buttons:
{
back:
{
label: v.lang.continueShopping,
className: 'btn-primary',
callback: function(){location.reload();}
},
cart:
{
label: v.gotoCart,
className: 'btn-primary',
callback: function(){location.href = createLink('cart', 'browse');}
}
}
});
}
}
);
}
;
var hash = window.location.hash.substring(1);
var browserLanguage = navigator.language || navigator.userLanguage;
var resolution = screen.availWidth + ' X ' + screen.availHeight;
$.get(createLink('log', 'record', "hash=" + hash), {browserLanguage:browserLanguage, resolution:resolution});
;v.location = "L2luZGV4LnBocD9tPXByb2R1Y3QmZj12aWV3JnByb2R1Y3RJRD0xMg==";;v.attributeHtml = "";;v.price = 0;;
$(document).ready(function()
{
$('#priceItem').replaceWith(v.attributeHtml);
extra = {};
$('#buyBtnBox').before($('#buyForm'));
$('#buyBtnBox').replaceWith($('#btnBox'));
$('#buyForm').after($('#countBox').parent());
$('.price-label').click(function()
{
hideAttrForm();
$(this).parent().find('.active').removeClass('active');
$(this).addClass('active');
code = $(this).data('attribute');
extra[code] = $(this).data('value');
$(this).find('[type=hidden]').val($(this).data('value'));
computedPrice();
});
$('.attr-selector').click(function()
{
code = $(this).data('attribute');
$('.' + code + '-inputer').val($(this).data('value'));
})
$('#count').change(function()
{
$('.count-input').val($(this).val())
});
$('#cartBtn').click(function()
{
if(!checkAttr())
{
alertAttrForm();
return false;
}
$.post(createLink('cart', 'add', "product=" + v.objectID + '&count=' + $('#count').val()),
{extra: extra},
function(response)
{
if(response.result == 'success')
{
loadCartInfo(true);
}
else
{
location.href = response.locate;
}
},
'json'
)
});
$('#buyBtn.login').click(function(){location.href=createLink('user', 'login', "referer=" + v.location)});
$('#buyBtn.buy').click(function()
{
if(!checkAttr())
{
alertAttrForm();
return false;
}
$('#buyForm').submit();
});
function alertAttrForm() { $('#attributeBox').css('border', '1px solid red'); }
function hideAttrForm() { $('#attributeBox').css('border', 'none'); }
function computedPrice()
{
if(!checkAttr()) return false;
price = v.price;
$('.attr-selector.active').each(function()
{
if($(this).data('price') && $(this).data('price') != 0)
{
value = $(this).data('price');
price = parseFloat(price) + parseFloat(value);
}
price = parseFloat(price);
price = price.toFixed(2);
});
if(v.hasDiscount)
{
price = price * v.discount;
price = price.toFixed(2);
}
$('.product-property .meta-list .meta-value strong.text-danger').html(price);
$('.product-property .meta-list .meta-value strong.text-important').html(price);
$('#price').val(price);
}
function checkAttr()
{
attrSelected = true;
$('.attr-selector').each(function()
{
if($(this).parents('li').find('.attr-selector.active').size() == 0) attrSelected = false;
});
return attrSelected;
}
});