<!-- 
var timeDelay = 3; 
var Pix = new Array 
("images/Hout-044frw.jpg" 
,"images/Houten-vloeren-parketvloeren-planken-vloer-1.jpg"
,"images/Fotoshowroom14k.jpg" 
,"images/loodsoverzichtk.jpg" 
,"images/Fairwoodrobijn1kl.jpg" 
,"images/Eruovast.jpg" 
,"images/PIC00015 (2)k.jpg" 
,"images/IMG_3961-37.jpg" 
,"images/showroomfairwoodboven.jpg" 
,"images/loodsfairwood.jpg"
,"images/scpr6.jpg"
,"images/showroom-fairwood.jpg" 
,"images/robijnoud.jpg" 
,"images/Ipekla.jpg" 
,"images/Resizelijmena.jpg"
,"images/rookeik2.jpg" 
,"images/IPEelft-1a.jpg"
,"images/scp1.jpg"
,"images/fairwshow.jpg"
,"images/IMG_3966-42.jpg" 
,"images/gerookteiken.jpg"

); 
var howMany = Pix.length; 
timeDelay *= 750; 
var PicCurrentNum = 0; 
var PicCurrent = new Image(); 
PicCurrent.src = Pix[PicCurrentNum]; 
function startPix() { 
setInterval("slideshow()", timeDelay); 
} 
function slideshow() { 
PicCurrentNum++; 
if (PicCurrentNum == howMany) { 
PicCurrentNum = 0; 
} 
PicCurrent.src = Pix[PicCurrentNum]; 
document["ChangingPix"].src = PicCurrent.src; 
} 
// End --> 

d = new Date();
var message="Copyright Fairwood " + d.getFullYear();
function clickIE4(){ if (event.button==2){ alert(message); return false; } }
function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){	if (e.which==2||e.which==3){ alert(message); return false; } } }
if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; }
else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; }
document.oncontextmenu=new Function("alert(message);return false")
