// JavaScript Document
// Advanced Random Images Start
  var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array()
// KW_rs[10000]
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image10.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image11.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image12.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image13.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image14.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image15.jpg'; 
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image16.jpg';   
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image2.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image3.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image5.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image6.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image7.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image8.jpg';
  KW_ARI[KW_ARI.length]='images/header_images/hdr_image9.jpg';
  j=parseInt(Math.random()*KW_ARI.length);
  j=(isNaN(j))?0:j;
    document.write("<img name='randomSlideShow' src='"+KW_ARI[j]+"'>");
function rndSlideShow(t,l) { // Random Slideshow by Kaosweaver
  x=document.randomSlideShow; j=l; while (l==j) {
    j=parseInt(Math.random()*KW_ARI.length); j=(isNaN(j))?0:j; }
  x.src=KW_ARI[j]; setTimeout("rndSlideShow("+t+","+j+")",t);
}
rndSlideShow(4000,0)

// Advanced Random Images End