// JavaScript Document



// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000
// Duration of crossfade (seconds)
var crossFadeDuration = 3
// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below
var Links = new Array()
//Pic[0] = '/images/sponsors/featured/HC_logoRGB.jpg';
Pic[0] = '/images/sponsors/featured/DepoSums3.gif';
//Pic[1] = '/images/sponsors/featured/gkl2.gif';
//Pic[3] = '/images/sponsors/featured/LexisNexis.gif ';
//Pic[4] = '/images/sponsors/featured/veritext.gif ';
//Pic[5] = '/images/sponsors/featured/Robert_Half_Legal.gif ';
//Pic[3] = '/images/sponsors/featured/WK.gif ';
//Pic[7] = '/images/sponsors/featured/ncr.gif ';
Pic[1] = '/images/sponsors/featured/firstlegal.jpg';
Pic[2] = '/images/sponsors/featured/escovery.gif';
Pic[3] = '/images/sponsors/featured/knox.gif';
Pic[4] = '/images/sponsors/featured/kusar.jpg';
//Links[0] = 'http://www.hirecounsel.com/';
Links[0] = 'http://www.deposums.biz/';
//Links[1] = 'http://www.gklcorpsearch.com/';
//Links[3] = 'http://www.lexisnexis.com/';
//Links[4] = 'http://www.lapa.org/resources/sponsors/VeritextOneSheetV11-qxd6.pdf';
//Links[5] = 'http://www.roberthalflegal.com/';
//Links[3] = 'http://www.wolterskluwer.com/';
//Links[7] = 'http://www.nationalcorp.com/';
Links[1] = 'http://www.firstlegalsupport.com/';
Links[2] = 'http://www.escovery.com/';
Links[3] = '#';
Links[4] = 'http://www.kusar.com/';

var t
var j = 0
var currentIndex = 0
var p = Pic.length
var preLoad = new Array()
for (i = 0; i < p; i++){
    preLoad[i] = new Image()
    preLoad[i].src = Pic[i]
}

/*
	can be envoked onLoad   <body onload='runSlideShow()'>
	image tag should look like <img src='/images/E/E602312.jpg' name='SlideShow' width=320 height=237>
*/
function runSlideShow(){
	currentIndex = j
	if (document.all){
      document.images.SlideShow.style.filter='blendTrans(duration=2)'
      document.images.SlideShow.style.filter='blendTrans(duration=crossFadeDuration)'
      document.images.SlideShow.filters.blendTrans.Apply()      
    }
    document.images.SlideShow.src = preLoad[j].src
    if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
    }
    j = j + 1

    if (j > (p-1)) j=0
        t = setTimeout('runSlideShow()', slideShowSpeed)
}
function gotoLink(){
	//location.href = Links[currentIndex];
	URL = Links[currentIndex];

	var windowVar;
	var leftPos, topPos, wdwWidth, wdwHeight;
	wdwWidth = "760";
	wdwHeight = "450";
	leftPos = screen.width/2 - wdwWidth/2;
	topPos = screen.height/2 - wdwHeight/2 - 60;

	var windowAttributes = "width=" + wdwWidth + ",height=" + wdwHeight + ",toolbar=0,menubar=0,scrollbars=1,resizable=1,status=0,location=0,directories=0,copyhistory=0,left=" + leftPos + ",top=" + topPos + ""
	windowVar = window.open(URL, "lapa_RW", windowAttributes);
}



function showDiv(divId) {
	divStyle = document.getElementById(divId).style;
	divStyle.display = "block";
}

function hideDiv(divId) {
	divStyle = document.getElementById(divId).style;
	divStyle.display = "none";
}




