var contender_f_and_b_2 = (function () { var my = {}; my.sName="FelixAndBertrand 2"; my.sColor = ""; my.sColorTest = ""; my.iPoints = 0; var iGridWidth; my.init = function(sColorIn,iGridWidthIn){ my.sColor = sColorIn; iGridWidth = iGridWidthIn; } my.runTurn = function(fCallback,iMaxMSEC){ var a = Math.round(Math.random() * 100); rowsOrCols = (Math.round(Math.random() * 2) === 0); for (var b=0; b<100; b++){ if (rowsOrCols) { $('#t' + a + 'x' + b).css("background",my.sColor); } else { $('#t' + b + 'x' + a).css("background",my.sColor); } } fCallback(); }; return my; }());