
$(document).ready(function()
{$("#shop-color-selector a").bind('click',function(){var image='/images/en/shop/products/small/'+$(this).attr('id');$("#smallimg").attr({src:image,alt:"Shop Image"});var sUrl=$(".thickbox").attr('href');var aUrl=sUrl.split('&image=',2);sUrl=aUrl[0]+"&image="+image;$(".thickbox").attr({href:sUrl});});$("#shop-color-selector-large a").bind('click',function(){var image='/images/en/shop/products/large/'+$(this).attr('id');$("#largeimg").attr({src:image,alt:"Shop Image"});});$('#largeImage').bind('click',function(){});if(document.getElementById('shop-cart'))
{$("#ShoppingCartBox .BoxCntInner h3").prepend($.A({innerHTML:"Show Items",id:"ShoppingCartToggle",href:"#"}));$("#shop-cart").hide();}
$("#ShoppingCartToggle").toggle(function()
{$("#shop-cart-overview").slideUp('normal',function(){$("#shop-cart").slideDown();$('#ShoppingCartToggle').html("Hide Items");});},function()
{$("#shop-cart").slideUp('normal',function(){$("#shop-cart-overview").slideDown();$('#ShoppingCartToggle').html("Show Items");});});});