// Concentration Memory Game with Images - Body Script
// copyright Stephen Chapman, 28th February 2006
// you may copy this script provided that you retain the copyright notice

document.write('<div align="center"><table cellpadding="0" cellspacing="0" border="0">');

for (var a = 0; a <= 4; a++) {
	document.write('<tr>');
	
  for (var b = 0; b <= 7; b++) {
	  document.write('<td align="center" class="blk" id="t'+((8*a)+b)+'"></td>');
	  }
	
  document.write('<\/tr>');

}
document.write('<\/table><form name="mem"><input type="button" name="cnt" value="0:00" onclick="window.start()" \/><\/form><\/div>');
                    
