/*
OWNERSHIP    Optimised Web Design, Philip Kay
ADDRESS      Duken House, Wootton, Bridgnorth, WV15 6EA, UK
TEL          +44 (0) 1746 781 653
MOBILE       +44 (0) 7711 317 681
EMAIL        kay@osltd.co.uk
RIGHTS       The contents and design of these pages are the property of
             the author who grants no rights for copying, distribution
             or reselling without prior written agreement.
COPYRIGHT    Copyright (c) 2007 Optimised Web Design
*/

var images = new Array(
"images/thumbs/cust1.jpg",
"images/thumbs/cust2.jpg",
"images/thumbs/cust3.jpg",
"images/thumbs/cust4.jpg",
"images/thumbs/cust5.jpg",
"images/thumbs/cust6.jpg",
"images/thumbs/cust7.jpg",
"images/thumbs/cust8.jpg",
"images/thumbs/cust9.jpg"
)

var load = new Array()
for (i=0; i <= images.length-1; i++) {
	load[i] = new Image();
	load[i].src = images[i];
}

obj = new Array();
obj[0] = "<img src='images/thumbs/cust1.jpg' width=200>";
obj[1] = "<img src='images/thumbs/cust2.jpg' width=200>";
obj[2] = "<img src='images/thumbs/cust3.jpg' width=200>";
obj[3] = "<img src='images/thumbs/cust4.jpg' width=200>";
obj[4] = "<img src='images/thumbs/cust5.jpg' width=200>";
obj[5] = "<img src='images/thumbs/cust6.jpg' width=200>";
obj[6] = "<img src='images/thumbs/cust7.jpg' width=200>";
obj[7] = "<img src='images/thumbs/cust8.jpg' width=200>";
obj[8] = "<img src='images/thumbs/cust9.jpg' width=200>";

var n = 1;
function go(){
	if((typeof d1) != "undefined"){
		d1.filters.revealTrans.Transition = 7;
		d1.filters.revealTrans.Apply();
		d1.innerHTML = obj[n-1];
		(n == obj.length) ? n=1 : n++;
		d1.filters.revealTrans.Play(2);
		setTimeout("go()", ((5 * 1000) + 1000));
	}
}

function pict(File, Text){
	Args = 'left=0,top=0,screenX=0,screenY=0,width=600,height=600,resizable=no';
	if((typeof picturewin) != "undefined") picturewin.close();
	picturewin = window.open('', 'picture', Args);
	picturewin.document.writeln('<html><title>Rojac Engineering</title><body leftmargin=0 topmargin=0>');
	picturewin.document.writeln('<table width=100% height=100%><tr><td valign=middle align=center>');
	picturewin.document.writeln('<img src="images/'+File+'" width=500 border=0><br><br>' + Text + '<br><br>');
	picturewin.document.writeln('<a href="javascript:close()">[Close Window]</a></td><tr><table></body></html>');
}


