// JavaScript Document
// Advanced Random Images Start
// Copyright 2001-2002 All rights reserved, by Paul Davis - www.kaosweaver.com
  var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array()
// KW_ss[3000]
  KW_ARI[KW_ARI.length]='Images/csm-5a.jpg';
  KW_ARI[KW_ARI.length]='Images/csm-11.jpg';
  KW_ARI[KW_ARI.length]='Images/csm-7.jpg';
  KW_ARI[KW_ARI.length]='Images/csm-13.jpg';
  KW_ARI[KW_ARI.length]='Images/csm-12.jpg';
  j=parseInt(Math.random()*KW_ARI.length);
  j=(isNaN(j))?0:j;
    document.write("<img name='seqSlideShow' src='"+KW_ARI[j]+"'>");
function seqSlideShow(t,l) { // Sequential Slideshow by Kaosweaver
  x=document.seqSlideShow; j=l; j++;  if (j==KW_ARI.length) j=0;
  x.src=KW_ARI[j]; setTimeout("seqSlideShow("+t+","+j+")",t);
}
 seqSlideShow(3000,0)
// Advanced Random Images End
