// JavaScript Documentfunction showImageb(){							var theImagesb = new Array()	theImagesb[0] = 'img/home/living1.jpg'	theImagesb[1] = 'img/home/living2.jpg'	theImagesb[2] = 'img/home/living3.jpg'			var p = theImagesb.length;	var whichImage = Math.round(Math.random()*(p-1));	document.write('<img src="'+theImagesb[whichImage]+'" width="190" height="190" border="0">');}function showImagec(){							var theImagesc = new Array()	theImagesc[0] = 'img/home/homemade1.jpg'	theImagesc[1] = 'img/home/homemade2.jpg'	theImagesc[2] = 'img/home/homemade3.jpg'			var p = theImagesc.length;	var whichImage = Math.round(Math.random()*(p-1));	document.write('<img src="'+theImagesc[whichImage]+'" width="190" height="190" border="0">');}function showImagee(){							var theImagese = new Array()	theImagese[0] = 'img/home/basics1.jpg'	theImagese[1] = 'img/home/basics2.jpg'	theImagese[2] = 'img/home/basics3.jpg'			var p = theImagese.length;	var whichImage = Math.round(Math.random()*(p-1));	document.write('<img src="'+theImagese[whichImage]+'" width="190" height="190" border="0">');}function showImagef(){							var theImagesf = new Array()	theImagesf[0] = 'img/home/notebook1.jpg'	theImagesf[1] = 'img/home/notebook2.jpg'			var p = theImagesf.length;	var whichImage = Math.round(Math.random()*(p-1));	document.write('<img src="'+theImagesf[whichImage]+'" width="190" height="190" border="0">');}
