var theImagess = new Array()
	theImagess[0] = '<img src="/wp-content/themes/21apps/images/didyouknow1.jpg" alt="image" />'
	theImagess[1] = '<img src="/wp-content/themes/21apps/images/didyouknow2.jpg" alt="image" />'
	theImagess[2] = '<img src="/wp-content/themes/21apps/images/didyouknow3.jpg" alt="image" />'
	theImagess[3] = '<img src="/wp-content/themes/21apps/images/didyouknow4.jpg" alt="image" />'
	theImagess[4] = '<img src="/wp-content/themes/21apps/images/didyouknow5.jpg" alt="image" />'	
	theImagess[5] = '<img src="/wp-content/themes/21apps/images/didyouknow6.jpg" alt="image" />'
	theImagess[6] = '<img src="/wp-content/themes/21apps/images/didyouknow7.jpg" alt="image" />'
	theImagess[7] = '<img src="/wp-content/themes/21apps/images/didyouknow8.jpg" alt="image" />'
	theImagess[8] = '<img src="/wp-content/themes/21apps/images/didyouknow9.jpg" alt="image" />'
	theImagess[9] = '<img src="/wp-content/themes/21apps/images/didyouknow10.jpg" alt="image" />'
var j = 0
var p = theImagess.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagess[i]
}
var whichImages = Math.round(Math.random()*(p-1));
function showImageDYK(){
document.write(theImagess[whichImage]);
}


 
