/**
 * Copyright (c) 2009 Really Helsinki Oy, All rights reserved.
 */
//>>built
ReallyProductShow=function(_1){this.setOptions(_1);this.init();};ReallyProductShow.prototype={};ReallyProductShow.prototype.setOptions=function(_2){_2=_2||{};this.updateProductInfoUrl=_2.updateProductInfoUrl||null;this.trackerProductCategory=_2.trackerProductCategory||null;this.galleryHideLabel=_2.galleryHideLabel||null;this.productItemContainerClass="undefined"!=typeof _2.productItemContainerClass?_2.productItemContainerClass:"productItem";this.productItemLinkClass="undefined"!=typeof _2.productItemLinkClass?_2.productItemLinkClass:"productItem_";this.productItemNameStart=_2.productItemNameStart||this.productItemLinkClass;};ReallyProductShow.prototype.init=function(){};ReallyProductShow.prototype._getProductIDFromProductItemClass=function(_3){var _4=null;var _5=this.productItemNameStart?this.productItemNameStart:null;if(!_5){return;}var _6=$(_3).attr("class").split(/\s+/);$(_6).each(function(_7,_8){if(_5!=_8.substring(0,_5.length)){return;}_4=_8.substring(_5.length);});return _4;};ReallyProductShow.prototype.updatePageViewTrackers=function(_9,_a,_b){if("undefined"!=typeof snoobi&&snoobi&&snoobi.trackPageView){snoobi.trackPageView(_9,_b,_a);}if("undefined"!=typeof _gaq&&_gaq&&_gaq.push){_gaq.push(["_trackEvent",_a,_9,_b]);}};ReallyProductShow.prototype.beforeProductShowEvent=function(){};ReallyProductShow.prototype.afterProductShowEvent=function(_c){};ReallyProductShow.prototype.showProduct=function(_d,_e){var _f=this;if(!_f.updateProductInfoUrl){return;}$(_f).trigger("beforeProductShowEvent");if(typeof _f.productRequest=="object"&&typeof _f.productRequest.abort=="function"){_f.productRequest.abort();}_f.productRequest=$.ajax({url:_f.updateProductInfoUrl,data:{productID:_d},dataType:"json",success:function(_10){if(!_10.content){return;}var _11=_10.title?_10.title:"";var _12=_10.content;var _13=$(_12).attr("id");$("#"+_13).html($(_12).html());var _14="productMainPic_"+_d;var _15=$(".productPicInner[id='"+_14+"'] a");if(_15.length>0&&"undefined"!=typeof _15.bigPicture){_15.bigPicture();}_f.updateProductImagesToBigPictures(_14,_15.size()>0);$(_f).trigger("afterProductShowEvent",_10);if(_e){_f.updatePageViewTrackers(_e,_f.trackerProductCategory,_11);}}});};ReallyProductShow.prototype.connectProductLinksToShowProductEvent=function(){var _16=this;var _17=$("head > base").attr("href");var _18="";if(this.productItemContainerClass){_18+="."+this.productItemContainerClass+" ";}_18+="a";if(this.productItemLinkClass){_18+="[class^='"+this.productItemLinkClass+"']";}$(_18).click(function(evt){var _19=$(this).attr("id");if(_19&&0==_19.indexOf("bigPicture")){return true;}var _1a=_17+$(this).attr("href");evt.preventDefault();var _1b=_16._getProductIDFromProductItemClass($(this));$(_16).bind("afterProductShowEvent",function(e){$(_18).each(function(_1c,_1d){var _1e=_16._getProductIDFromProductItemClass($(_1d));if(_1e==_1b){$(_1d).addClass("open");}else{$(_1d).removeClass("open");}});});_16.showProduct(_1b,_1a);});};ReallyProductShow.prototype.updateProductImagesToBigPictures=function(_1f,_20){var _21=this;if($("#"+_1f).length<=0){return;}var _22={cls:"productInfoBP",prevLabel:"&laquo;",nextLabel:"&raquo;",hideLabel:_21.galleryHideLabel};$(".productInfoImageThumbs a").find("img:eq(0)").hide();$(".productInfoImageThumbs a").click(function(e){e.preventDefault();if(_20){var box=new $.jquery.ux.ui.BigPicture(this,_22);$("#"+_1f).html($(this).parent().html());$("#"+_1f+" img:eq(0)").show();$("#"+_1f+" img:eq(1)").hide();$("#"+_1f+" a").click(function(e){e.preventDefault();box.launchBox();});}else{$("#"+_1f).html($(this).html());$("#"+_1f+" img:eq(0)").show();$("#"+_1f+" img:eq(1)").hide();}});$(".productInfoImageThumbs a:eq(0)").click();};
