$(document).bind("OpenDialoggsLoaded",function(){$(".timer").each(function(){var D=$(this);var A=new Date(new Date().getTime()+parseInt($(".timerLeft",D.parent()).val())*1000);
var B=D;var C=setInterval(function(){if(B.length){var F=new Date();var H=(A.getTime()-F.getTime())/1000;
if(H<=0){B.parent().parent().html("The questions period has ended!");clearInterval(C);return }var I="",E=[["week",604800],["day",86400],["hour",3600],["minute",60],["second",1]];
for(var G=0;G<E.length;G++){E[G][2]=Math.floor(H/E[G][1]);E[G][3]=" "+E[G][0]+"s, ";if(E[G][2]==1){E[G][3]=" "+E[G][0]+", "
}if(E[G][2]==0){E[G][2]=E[G][3]=""}H-=E[G][2]*E[G][1];I+=E[G][2]+E[G][3]}I=I.substr(0,I.length-2)+" ";
B.text(I)}else{clearInterval(C)}},1000)})});