/* WSGC Copyright */
dojo.provide("stylehouse");if(!dojo._hasResource["wsgc.js.StylehouseUtils"]){dojo._hasResource["wsgc.js.StylehouseUtils"]=true;dojo.provide("wsgc.js.StylehouseUtils");dojo.declare("wsgc.js.StylehouseUtils",null,{constructor:function(){this._downloadsController();},HEROIMAGE:0,THUMBNAILON:1,THUMBNAILOFF:2,DOWNLOAD1:3,DOWNLOAD2:4,targetArray:null,currentDownloadsItem:"",currentDownloadsType:"",currentDownloadsIndex:"",_downloadsController:function(){if(dojo.query("#download-swatches li img").length>0){var _1=dojo.query("#download-swatches li img");this.currentDownloadsItem=_1[0];_1.forEach(dojo.hitch(this,function(_2){dojo.connect(_2,"onclick",this,"handleThumbnailClick");}));this.downloadsActions(this.currentDownloadsItem);}},handleThumbnailClick:function(_3){dojo.stopEvent(_3);this.downloadsActions(_3.currentTarget);},downloadsActions:function(_4){if(this.targetArray&&dojo.isArray(this.targetArray)){dojo.byId(this.currentDownloadsType+"_"+this.currentDownloadsIndex).src=this.targetArray[this.THUMBNAILOFF];}var _5=_4.id.split("_");this.currentDownloadsType=_5[0];this.currentDownloadsIndex=_5[1];if(typeof downloads!=="undefined"&&dojo.isArray(downloads)){this.targetArray=downloads[this.currentDownloadsIndex-1];}else{this.targetArray=[];}dojo.byId("hero").src=this.targetArray[this.HEROIMAGE];dojo.byId(_4).src=this.targetArray[this.THUMBNAILON];dojo.byId("download-1").href=this.targetArray[this.DOWNLOAD1];if(this.targetArray.length>4){dojo.byId("download-2").href=this.targetArray[this.DOWNLOAD2];}}});}
