// Set the slideshow speed (in milliseconds)var SlideShowSpeed = 3000;// Set the duration of crossfade (in seconds)var CrossFadeDuration = 4;var Picture = new Array(); // don't change thisvar Caption = new Array(); // don't change this// Specify the image files...Picture[1]  = 'cw3/Admin/images/serv1.gif';Picture[2]  = 'cw3/Admin/images/serv2.gif';Picture[3]  = 'cw3/Admin/images/serv3.gif';Picture[4]  = 'cw3/Admin/images/serv4.gif';Picture[5]  = 'cw3/Admin/images/serv5.gif';Picture[6]  = 'cw3/Admin/images/serv6.gif';Picture[7]  = 'cw3/Admin/images/serv7.gif';Picture[8]  = 'cw3/Admin/images/serv8.gif';//don't change thesevar tss;var iss;var jss = 1;var pss = Picture.length-1;var preLoad = new Array();for (iss = 1; iss < pss+1; iss++){preLoad[iss] = new Image();preLoad[iss].src = Picture[iss];}function runSlideShow(){  var thePic=(document.layers)?document.layers.LayerPhoto.document.images.PictureBox:document.images.PictureBox;  if (document.all){    thePic.style.filter="blendTrans(duration=3)";    thePic.style.filter="blendTrans(duration=CrossFadeDuration)";    thePic.filters.blendTrans.Apply();    thePic.src = preLoad[jss].src;    thePic.filters.blendTrans.Play();  }thePic.src=preLoad[jss].src;jss = jss + 1;if (jss > (pss)) jss=1;tss = setTimeout('runSlideShow()', SlideShowSpeed);}function MM_reloadPage(init) {  //reloads the window if Nav4 resized  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);function P7_autoLayers() { //v1.5 by PVII var g,b,k,f,u,k,j,args=P7_autoLayers.arguments,a=parseInt(args[0]);if(isNaN(a))a=0; if(!document.p7setc){p7c=new Array();document.p7setc=true;for(u=0;u<10;u++){ p7c[u]=new Array();}}for(k=0;k<p7c[a].length;k++){if((g=MM_findObj(p7c[a][k]))!=null){ b=(document.layers)?g:g.style;b.visibility="hidden";}}for(k=1;k<args.length;k++){ if((g=MM_findObj(args[k]))!=null){b=(document.layers)?g:g.style;b.visibility="visible";f=false; for(j=0;j<p7c[a].length;j++){if(args[k]==p7c[a][j]) {f=true;}} if(!f){p7c[a][p7c[a].length++]=args[k];}}}}