// 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('
');
}
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('
');
}
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('
');
}
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('
');
}