
 //dbugScripts - will include non-compressed versions of this code if "jsdebug=true" is in the url of this page,
 //otherwise it will execute this code.

 if(!dbugScripts("http://publish.cnet.com:8100/html/rb/js/tron/news/",["news.tron.c3p0.js"])) {
 /*	news.tron.c3p0.js - packed	*/
       var TextFieldCounter=new Class({Implements:[Options,Events],options:{countUpdateSelector:".cnt",fieldSelector:"textarea",commonParentSelector:"dd",errorClass:"validation-advice",findCounter:function(A){return A.getParent(this.options.commonParentSelector).getElement(this.options.countUpdateSelector);}},initialize:function(B,A){this.setOptions(A);this.form=$(B);this.findCounter=this.options.findCounter;this.form.getElements(this.options.fieldSelector).each(this.setFieldValidation.bind(this));this.fireEvent("onInit");},setFieldValidation:function(D){var B=D.get("validatorProps");if(!B){return ;}B=JSON.decode(B);if(!B&&!B.maxLength){return ;}try{var A=this.findCounter(D);}catch(C){var A=null;}if(!A){return ;}D.addEvent("keyup",function(){var E=D.value.trim().length;A.set("text",E);if((E<(B.minLength||0))||(E>B.maxLength)){A.addClass(this.options.errorClass);}else{A.removeClass(this.options.errorClass);}}.bind(this));},resetCounter:function(B){var A=this.findCounter(B);if(!A){return ;}A.set("text","0").removeClass(this.options.errorClass);},resetAllCounters:function(){this.form.getElements(this.options.fieldSelector).each(this.resetCounter.bind(this));}});var FormRecycler={Base:new Class({Implements:[Options,Events],options:{clone:false,onInitialize:$empty,findLocalData:$lambda({}),resetOnMove:true,resetOnHide:false,onBeforeShow:$empty},initialize:function(B,A){this.setOptions(A);this.shell=(this.options.clone)?$(B).clone():$(B);this.form=(this.shell.get("tag")=="form")?this.shell:this.shell.getElement("form");if(!this.form){return null;}this.findLocalData=this.options.findLocalData;this.form.store("mobileForm",this);this.fireEvent("onInitialize");return this;},relocateForm:function(A){this.removeLocalParams();if(this.options.resetOnMove){this.form.reset();this.fireEvent("onReset");}this.setLocalData(this.findLocalData(A));this.fireEvent("onRelocate",A);},removeLocalParams:function(){this.form.getElements("input").each(function(A){if(A.getProperty("local")){A.dispose();}});},setLocalData:function(A){if(!A||$type(A)!="object"){return null;}$each(A,function(C,B){new Element("input",{type:"hidden",name:B,value:C,local:"true"}).inject(this.form);},this);},move:function(A){A=$(A);if(!A){return false;}this.relocateForm.pass(A,this);return A;},toElement:function(){return this.shell;}})};$extend(FormRecycler,{Inline:new Class({Extends:FormRecycler.Base,Implements:Chain,options:{hideFormsInParent:true,revealOptions:{},firstParent:null},initialize:function(B,A){A=$merge(this.options,A||{});this.parent(B,A);this.form.store("mobileForm",this);this.currentParent=$(this.options.firstParent)||null;this.shell.set("reveal",$merge(this.options.revealOptions,{onComplete:this.callChain.bind(this)}));return this;},relocateForm:function(A){this.parent(A);A.adopt(this.shell);this.currentParent=A;this.callChain();},move:function(A){this.clearChain();A=$(A);if(!A){return ;}if(this.currentParent==A){if(this.options.hideFormsInParent){this.hideOthers();}this.shell.get("reveal").toggle();return ;}this.chain(this.relocateForm.pass(A,this),this.show.bind(this));this.hide();},show:function(){if(this.shell.get("reveal").hiding){this.show.delay(10,this);return ;}if(this.options.hideFormsInParent){this.hideOthers();}this.shell.reveal();},hideOthers:function(){this.currentParent.getElements("form").each(function(A){try{if(A!=this.form){A.retrieve("mobileForm").toElement().dissolve();}}catch(B){dbug.log(B);}});},hide:function(){this.shell.dissolve();}}),GlobalModal:new Class({Extends:FormRecycler.Base,options:{modalOptions:{}},initialize:function(B,A){A=$merge(this.options,A||{});this.parent(B,A);this.modal=new GlobalModal($merge(this.options.modalOptions,{content:this.element}));},move:function(A){dbug.log("move: arugments: %o",arguments);A=this.parent(A);dbug.log(A);if(!A){return false;}this.show();},show:function(){this.modal.show();},hide:function(){this.modal.hide();}})});var CommentForm=new Class({Extends:FormRecycler.Inline,commentOptions:{submitElems:false,closeElems:false,useValidator:true,validatorOptions:{},useTextFieldCounter:true},initialize:function(B,A){this.parent(B,$merge(this.commentOptions,A));try{this.validator=(this.options.useValidator)?new FormValidator(this.form,this.options.validatorOptions):false;}catch(C){dbug.log("Validator addition failed: %o",C);this.validator=false;}this.waiter=false;this.form.set("send",{onRequest:function(){if(!this.waiter){this.waiter=new Waiter(this.form);}this.waiter.start();}.bind(this),onComplete:function(){if(this.waiter){this.waiter.stop();}}.bind(this),onSuccess:this.handlePostResponse.bind(this),onFailure:this.handleFailure.bind(this)});if(this.options.useTextFieldCounter&&window.TextFieldCounter){this.textCounters=new TextFieldCounter(this.form);}if(this.options.submitElems){this.form.getElements(this.options.submitElems).addEvent("click",this.doSubmit.bind(this));}if(this.options.closeElems){this.form.getElements(this.options.closeElems).addEvent("click",this.hide.bind(this));}this.form.addEvent("submit",function(D){D.stop();this.doSubmit();}.bind(this));},doSubmit:function(){if(!UserVars.isLoggedIn()){return false;}this.form.getElements("input[type=text], textarea").each(function(A){A.set("value",A.get("value").trim());});if(this.validator&&!this.validator.validate()){return false;}this.form.send();},hide:function(){this.parent();if(this.validator){this.chain(function(){this.validator.reset();if(this.options.useTextFieldCounter){this.textCounters.resetAllCounters();}this.fireEvent("onReset");this.callChain();}.bind(this));}},handlePostResponse:function(E){var D=JSON.decode(E);this.hide();this.thanks=new Element("div",{"class":"userReviewForm thankyou"}).inject(this.shell,"before");if(D.responseMessages){new Element("h2",{html:"<span>"+(D.responseMessages[0].replace(", !",", "+UserVars.getDisplayName()+"!"))+"</span>"}).adopt(new Element("a",{"class":"closeConfirm",text:"close",events:{click:function(){this.thanks.dissolve();}.bind(this)}})).inject(this.thanks);if(D.responseMessages.length>1){for(var C=1;C<D.responseMessages.length;C++){new Element("div",{html:D.responseMessages[C]}).inject(this.thanks);}}}if(D.links){var B=new Element("ul",{"class":"viewLinks"}).inject(this.thanks);var A=function(G,F){B.adopt(new Element("li").adopt(new Element("a",{href:F,text:G,"class":"readMore"})));};if(D.links.READ_YOUR_REVIEW){this.reviewLink=D.links.READ_YOUR_REVIEW;A("Read your review",this.reviewLink);}if(D.links.READ_YOUR_UPDATE){A("Read your update",D.links.READ_YOUR_UPDATE);}if(D.links.READ_YOUR_REPLY){this.replyLink=D.links.READ_YOUR_REPLY;A("Read your reply",this.replyLink);}if(D.links.READ_MORE_USER_REVIEWS){A("Read more user reviews",D.links.READ_MORE_USER_REVIEWS);}if(D.links.BACK_TO_PRODUCT_REVIEW){this.overviewLink=D.links.BACK_TO_PRODUCT_REVIEW;A("Back to product review",this.overviewLink);}}this.fireEvent("onCommentSuccess");},handleFailure:function(){this.writeMessage('This action was not completed. Please try again, or notify us at our <a href="http://cnet.custhelp.com/">Help Center</a>.');},writeMessage:function(A){new Element("div",{html:A}).inject(this.shell,"before");}});var ThumbScroller=new Class({Extends:Fx.Scroll,scrollOptions:{thumbs:".box",axis:"x",thumbContainer:null,nav:{},startIndex:0},initialize:function(A,B){this.parent(A,$merge(this.scrollOptions,B));this.element.setStyle("overflow","hidden");this.computeDimensions();this.initNav();this.element.store("thumbscroller",this);this.toIndex(this.options.startIndex);this.lastScroll=null;return this;},computeDimensions:function(){this.thumbs=this.element.getElements(this.options.thumbs);this.setParentSize();this.positions=this.getLocations();return this;},isAtEnd:function(A){A=A||this.getRange();return(A[A.length-1].index==this.thumbs.length-1&&A[A.length-1].type!="partial");},isAtStart:function(A){A=A||this.getRange();return(A[0].index==0&&A[0].type!="partial");},getLocations:function(){return this.thumbs.map(function(B){var C=B.getComputedSize()[this.getDir("total")];var A=B.getPosition(B.getParent())[this.getDir("xy")];return{size:C,start:A,end:C+A};},this);},initNav:function(){$$(this.options.nav.next).addEvent("click",this.toNextScreen.bind(this));$$(this.options.nav.previous).addEvent("click",this.toPreviousScreen.bind(this));$$(this.options.nav.start).addEvent("click",this.toStart.bind(this));$$(this.options.nav.end).addEvent("click",this.toEnd.bind(this));},getDir:function(A){switch(A){case"total":if(this.options.axis=="y"){return"totalHeight";}return"totalWidth";case"dir":if(this.options.axis=="y"){return"height";}return"width";case"xy":default:if(this.options.axis=="y"){return"y";}return"x";}},getStart:function(A){if(this.options.axis=="y"){return[0,A];}return[A,0];},getStartPx:function(A){if(!A){return 0;}return this.positions[A].start-(this.positions[A].start-this.positions[A-1].end);},setParentSize:function(){var A=(this.options.thumbContainer)?this.element.getElement(this.options.thumbContainer):this.element.getElement(this.options.thumbs).getParent();var B=0;$each(this.thumbs,function(C){B+=C.getComputedSize({styles:["padding","border","margin"]})[this.getDir("total")];},this);A.setStyle(this.getDir("dir"),B);},getRange:function(E){E=E||this.element.getScroll()[this.getDir("xy")];var D=this.element.getComputedSize({styles:["padding"]})[this.getDir("total")];var C=[];for(var A=0;A<this.positions.length;A++){var B=this.withinRange(this.positions[A],E,E+D);if(B){C.push($merge(B,{index:A}));if(B.where=="end"){break;}}}return C;},withinRange:function(C,B,A){if(C.end>B&&C.end<=A){if(C.start>=B){return{type:"full"};}else{return{type:"partial",where:"start"};}}else{if(C.start>=B&&C.start<A){return{type:"partial",where:"end"};}else{if(C.start<B&&C.end>A){return{type:"full"};}}}return false;},toNextScreen:function(){var A=this.getRange();if(A.getLast().type=="partial"&&A.length>1){this.start.run(this.getStart(this.getStartPx(A.getLast().index)),this);}else{if($(this.thumbs[A.getLast().index+1])){this.start.run(this.getStart(this.getStartPx(A.getLast().index+1)),this);}else{this.toEnd();}}this.lastScroll="next";},toPreviousScreen:function(){var A=this.getRange();var C=(A[0].type=="partial"&&A.length>1)?A[0].index:A[0].index-1;if(!this.positions[C]){this.toStart();return ;}var B=this.positions[C].end-this.element.getComputedSize({styles:["padding"]})[this.getDir("total")];var E=this.getRange(B);var D=(E[0].type=="partial"&&E.length>1)?E[0].index+1:E[0].index;this.start.run(this.getStart(this.getStartPx(D)),this);this.lastScroll="previous";},toIndex:function(A){this.start.run(this.getStart(this.getStartPx(parseInt(A))),this);},toStart:function(){if(this.options.axis=="y"){this.toTop();}else{this.toLeft();}},toEnd:function(){if(this.options.axis=="y"){this.toBottom();}else{this.toRight();}}});var commentsForms={findMessageId:function(C){var B=null;var A=C;do{B=A.getProperty("messageId");}while(!B&&(A=A.getParent("dl")));if(!B){return false;}return{messageId:B};},ReplyForm:new Class({Extends:CommentForm,initialize:function(B,A){this.parent(B,A);this.form.set("send",{onSuccess:this.handlePostResponse.bind(this),onFailure:this.handleFailure.bind(this),onRequest:function(){this.thanks=new Element("div",{"class":"userReviewForm"}).inject(this.shell,"before");new Element("span",{text:"Thank you for submitting your comment!"}).inject(new Element("h2").inject(this.thanks));new Element("div",{text:"Note that your submission may not appear immediately on our site."}).inject(this.thanks);this.hide();if($("mostdisc")){$("mostdisc").setStyle("display","block");}}.bind(this)});},handlePostResponse:function(D){var B=JSON.decode(D);var C=$A(B.responseMessages);if(B.responseMessages&&B.responseMessages.length>1){for(var A=1;A<B.responseMessages.length;A++){new Element("div",{html:B.responseMessages[A]}).inject(this.thanks);}}this.fireEvent("onCommentSuccess");},handleFailure:function(){dbug.log("Reply form fail!");return null;}})};var initializeComments=new Class({initialize:function(){this.setCommentCount();$("fixedCommentBox").getElement("dl.addcommentform").setStyle("display","block");this.setUpComments();this.initLinks();},setUpComments:function(){commentsForms.reply=new commentsForms.ReplyForm("replyArea",{findLocalData:commentsForms.findMessageId,resetOnHide:false,submitElems:".addcomment a",closeElems:".cancel a",onCommentSuccess:function(){new Jlogger({tag:"submitReply"}).ping();},onRelocate:function(){if(this.form.getElement("input[name=post_fb]")){this.form.getElement("input[name=post_fb]").checked=true;}}});CURS.Manager.addEvent("onLogin",function(){if(CURS.Social.fb.isUser()){commentsForms.reply.addEvent("onCommentSuccess",function(){var K=$E("h1");var J=K.getElement("a");var I=((J)?J:K).get("text");dbug.log("Story title: "+I);dbug.log("Reply summary: "+CURS.Social.fb.getParsedText($("replyArea").getElement("textarea[name=body]").get("value"),120,false));var H=((J)?"http://news.cnet.com"+J.get("href"):new Link(window.location).mergeQueryString({jsdebug:false,tag:false}).get("href"));var L=$E("div.userReviewForm").getElements("a");L=L.filter(function(M){return(M.get("href").match(PageVars.get("assetId"))&&M.get("href").match("communityId"));})[0];CURS.Social.fb.addOnInit(function(){FB.Connect.showFeedDialog(((UserVars.get("siteId","number")==4)?36337261925:35883426698),{storyTitle:I,storyUrl:H,commentSummary:CURS.Social.fb.getParsedText($("replyArea").getElement("textarea[name=body]").get("value"),120,false),commentUrl:L.get("href")});dbug.log("Reply submitted to Facebook");},true);});}});commentsForms.offensive=new CommentForm("offensiveArea",{findLocalData:commentsForms.findMessageId,resetOnHide:false,submitElems:".submit.send a.button",closeElems:".cancel a"});commentsForms.offensive.addEvent("onRelocate",function(){var H=this.form.getElement("input[name=permalink]");H.set("value",H.get("value").replace(/#.*/,"")+"#"+this.form.getElement("input[name=messageId]").get("value"));});commentsForms.emailAFriend=new CommentForm("emailAFriendArea",{findLocalData:commentsForms.findMessageId,resetOnHide:false,submitElems:".submit.send a.button",closeElems:".cancel a"});commentsForms.emailAFriend.addEvent("onRelocate",function(){var H=this.form.getElement("input[name=permalink]");H.set("value",H.get("value").replace(/#.*/,"")+"#"+this.form.getElement("input[name=messageId]").get("value"));});if($("deleteArea")){commentsForms.adminDelete=new CommentForm("deleteArea",{findLocalData:commentsForms.findMessageId,submitElems:".submit.delete a.button",closeElems:".cancel a"});}var C=function(){commentsForms.newComment=new commentsForms.ReplyForm("newCommentForm",{submitElems:".submit.addcomment a.button",clone:false});var H=commentsForms.newComment.form.getElement("input[name=body]");if(H){H.addClass("maxLength").setProperty("validatorprops","{minLength:2, maxLength: 4999}");}if(CURS.Social.fb.isUser()){commentsForms.newComment.addEvent("onCommentSuccess",function(){var L=$E("h1");var K=L.getElement("a");var J=((K)?K:L).get("text");var I=((K)?"http://news.cnet.com"+K.get("href"):new Link(window.location).mergeQueryString({jsdebug:false,tag:false}).get("href"));var M=this.thanks.getElements("a");dbug.log("Story title: "+J);dbug.log("Comment summary: "+CURS.Social.fb.getParsedText($("newCommentForm").getElement("textarea[name=body]").get("value"),120,false));M=M.filter(function(N){return(N.get("href").match(PageVars.get("assetId"))&&N.get("href").match("communityId"));})[0];CURS.Social.fb.ensureInit(function(){FB.Connect.showFeedDialog(((UserVars.get("siteId","number")==4)?36337156925:35883001698),{storyTitle:J,storyUrl:I,commentSummary:CURS.Social.fb.getParsedText($("newCommentForm").getElement("textarea[name=body]").get("value"),120,false),commentUrl:M.get("href")});dbug.log("Comment submitted to Facebook");},true);});}};var G=function(K){K=K||'<span class="cnetInvite"><span><a>Log in or create an account</a> to post a comment.</span></span>';if(!UserVars.isLoggedIn()){if(window.FB){K+='<span class="or">OR</span><span class="fbConnectInvite" style="text-align:center;"><a class="connect2fbButton"><img src="http://i.i.com.com/cnwk.1d/i/rb/fb/fb-connect-button-169x23.gif" alt="Connect with Facebook" width="169" height="23"/></a></span>';CURS.Social.fb.init();var J=(dbug.enabled||Browser.qs.jsdebug)?"http://publish.cnet.com:8100/html/rb/js/tron/oreo.login.js":"http://i.i.com.com/cnwk.1d/html/rb/js/tron/oreo.login.compressed.js";if(!CURS.Process){new Asset.javascript(J,{id:"oreoLogin",onload:function(){CURS.Social.fb.initFBConnect();$$(".connect2fbButton").addEvent("click",CURS.Social.fb.triggerLogin.pass(CURS.Social.fb.startSession));}});}else{CURS.Social.fb.initFBConnect();$$(".connect2fbButton").addEvent("click",CURS.Social.fb.triggerLogin.pass(CURS.Social.fb.startSession));}}else{dbug.log("Facebook files not loaded");K+='<span class="or">OR</span><span class="fbConnectInvite"><a class="fbConnectLink">Log in with your Facebook account</a></span>';}}var H=$E("dd.invite")||(new Element("dd",{"class":"status invite reg",html:'<p class="message"></p>'}).inject($("fixedCommentBox").getElement(".addcommentform dt.hed"),"after"));var I=H.getElement("p.message");I.empty();I.set("html",K);$$(".status .fbConnectInvite").setStyle("height",$$(".status")[0].getSize().y-20);if($$(".status .connect2fbButton").length>0){$$(".status .connect2fbButton").setStyle("margin-top",($$(".status")[0].getSize().y/2)-$$(".status .connect2fbButton")[0].getSize().y);}if($$(".status .or").length>0){$$(".status .or").setStyle("top",($$(".status")[0].getSize().y/2)-$$(".status .or")[0].getSize().y+10);}D(I);};var B=function(){var H=$("fixedCommentBox").getElement("dd.invite");if(!$("fixedCommentBox").getElement("dd.welcome")){var I=new Element("dd",{"class":"status welcome",html:'<p>You are logged in as <span class="cnetUserName"></span>. Please leave a comment.'});if(H){I.replaces(H);}else{I.inject($("fixedCommentBox").getElement(".addcommentform dt.hed"),"after");}}CURS.Manager.writeUserNames(I);};var D=function(H){if(!E){return false;}E=E.filter(function(J){return !!$(J);});var I=$(H).getElements("a");I=I.filter(function(J){return !E.contains(J);});I.addEvent("click",F);E.combine(I);};G();var A=function(){if(!UserVars.isLoggedIn()){G();}else{if(!UserVars.hasFullAccess()){G("Your account is not yet confirmed. <a>Click here to confirm your account.</a>");}else{if(!$chk(UserVars.get("userName"))){G("You'll need a CNET username in order to submit a review. <a>Click here to create a username.</a>");}else{B();if(!commentsForms.newComment){C();}}}}};CURS.Manager.addEvent("onLogin",function(){A();CURS.Manager.addEvent("onStateChange",function(){A();});});var E=$("fixedCommentBox").getElements(".status a, #new-body, #subComment");var F=function(H){var I={registerHed:"Join CNET to comment on this story",loginHed:"Log in to CNET to comment on this story",appId:"36",nextAction:function(){if(commentsForms.newComment){E.removeEvent("click",F);CURS.Manager.removeEvents("onStateChange");}}};if(H.target.hasClass("fbConnectLink")||H.target.getParent(".fbConnectLink")){I.ursForm="fbconnect";}if(!H.target.hasClass("connect2fbButton")&&!H.target.getParent().hasClass("connect2fbButton")){CURS.Manager.checkLogin(I);}};E.addEvent("click",F);},initLinks:function(A){A=$(A)||$(document.body).getElement(".commentwrapper");A.getElements("a.reply").addEvent("click",function(B){CURS.Manager.checkLogin({registerHed:"Join CNET to reply to this comment",loginHed:"Log in to CNET to reply to this comment",appId:"36",nextAction:function(){commentsForms.reply.move($(B.target).getParent("dl").getElement(".toolstretch"));}});});A.getElements("a.repo").addEvent("click",function(B){CURS.Manager.checkLogin({registerHed:"Join CNET to report this comment",loginHed:"Log in to CNET to report to this comment",appId:"36",nextAction:function(){commentsForms.offensive.move($(B.target).getParent("dl").getElement(".toolstretch"));}});});A.getElements("a.mail").addEvent("click",function(B){CURS.Manager.checkLogin({registerHed:"Join CNET to e-mail this comment to a friend",loginHed:"Log in to CNET to e-mail this comment to a friend",appId:"36",nextAction:function(){commentsForms.emailAFriend.move($(B.target).getParent("dl").getElement(".toolstretch"));}});});A.getElements(".editForm").each(function(B){new CommentForm(B,{clone:false,submitElems:".submit.edit a.button",closeElems:".submit.cancel a.close",firstParent:B.getParent(".toolstretch")});});A.getElements("a.edit").addEvent("click",function(B){$(B.target).getParent("dl").getElement(".editForm").retrieve("mobileForm").show();});A.getElements("a.delete").addEvent("click",function(B){commentsForms.adminDelete.move($(B.target).getParent("dl").getElement(".toolstretch"));});},setCommentCount:function(){try{var B=$$(".commentwrapper .comcount")[0].get("text").toInt();var A;if(!B){A=new Element("a",{href:"#addcomm",text:"Post a comment","class":"linkIcon comments"});}else{A=new Element("a",{href:"#comments",text:(B==1)?"1 comment":B+" comments","class":"linkIcon comments"});}A.inject($("contentBody").getElement(".contentTools li.commentTease"));}catch(C){dbug.log("Set comment count error: %o",C);}}});var Replyer=new Class({options:{repliesId:"",processId:"",hideReplyId:"",nodeId:null,assetId:null,communityId:null,targetCommunityId:null,messageId:null,pageNum:null,isModerator:null,showReplyId:null},init:function(A){this.options.repliesId=A.repliesId;this.options.processId=A.processId;this.options.hideReplyId=A.hideReplyId;},showReplies:function(A){this.init(A);$("show_replies_"+A.messageId).set("text","Refresh replies");$(A.processId).setStyle("display","block");$(this.options.repliesId).setStyle("display","none");var B="/"+PageVars.getOid({pageType:"8617",pageNumber:null})+".html";var C="communityId="+A.communityId+"&targetCommunityId="+A.targetCommunityId+"&messageId="+A.messageId+"&pageNum="+A.pageNum+"&isModerator="+A.isModerator+"&nomesh";new Request({url:B,method:"get",onSuccess:this.finish.bind(this)}).send(C);},finish:function(A){$(this.options.repliesId).set("html",A);$(this.options.processId).setStyle("display","none");try{$(this.options.repliesId).reveal();}catch(B){$(this.options.repliesId).setStyles({display:"block",height:"auto"});}$(this.options.hideReplyId).setStyle("display","block");try{commentsForms.initialize.initLinks(this.options.repliesId);}catch(B){dbug.log(B);}},hideReplies:function(A){$(A.hideReplyId).setStyle("display","none");try{$(A.repliesId).dissolve();}catch(B){$(A.repliesId).setStyle("display","none");}$(A.showReplyId).set("text","Show replies");}});window.addEvent("domready",function(){commentsForms.initialize=new initializeComments();if($("scrollShell")&&!$("scrollShell").retrieve("thumbscroller")){new ThumbScroller("scrollShell",{thumbs:"li.promoBox",nav:{next:".arrowRight",previous:".arrowLeft"}}).addEvent("onComplete",function(){$$(".arrowLeft").morph({opacity:((this.isAtStart())?0.3:1)});$$(".arrowRight").morph({opacity:((this.isAtEnd())?0.3:1)});}).fireEvent("onComplete");}});
 /* end packed code */
 }
       
