
//DEFINE ALL VARIABLES GLOBALLY

//Presentational Slideshow Script- By Dynamic Drive
    //For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
    //This credit MUST stay intact for legal use

    var slideshow_width='243px'; //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist)
    var slideshow_height='162px'; //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist)
    var pause=5000; //SET PAUSE BETWEEN SLIDE (2000=2 seconds)
    var slidebgcolor="white";

    var dropimages=new Array();
    //SET IMAGE PATHS. Extend or contract array as needed    
    dropimages[0]="/content_images/nlh_images/Hartman.gif";
    dropimages[1]="/content_images/nlh_images/HotelDel1.jpg";
    dropimages[2]="/content_images/nlh_images/Smart.gif";
    dropimages[3]="/content_images/nlh_images/HotelDel2.jpg";
    dropimages[4]="/content_images/nlh_images/Jackson.gif";
    dropimages[5]="/content_images/nlh_images/HotelDel3.jpg";
    dropimages[6]="/content_images/nlh_images/Pendras.gif";
    dropimages[7]="/content_images/nlh_images/Obama.jpg";
    dropimages[8]="/content_images/nlh_images/Smart2.gif";
    dropimages[9]="/content_images/nlh_images/CapitolHill.jpg";
    dropimages[10]="/content_images/nlh_images/Hartman2.gif";
    dropimages[11]="/content_images/nlh_images/Gavel.jpg";
    dropimages[12]="/content_images/nlh_images/Anonymous.gif";
    dropimages[13]="/content_images/nlh_images/Conference.jpg";
    dropimages[14]="/content_images/nlh_images/Davis.gif";
    dropimages[15]="/content_images/nlh_images/BusinessPeople.jpg";
    

    var droplinks=new Array();
    //SET IMAGE URLs. Use "" if you wish particular image to NOT be linked:
    droplinks[0]="";
    droplinks[1]="";
    droplinks[2]="";

    var preloadedimages=new Array();

    var curpos=parseInt(slideshow_width)*(-1);
    var degree=10;
    var curcanvas="canvas0";
    var curimageindex=linkindex=0;
    var nextimageindex=1;
    
    var ie4=document.all;
    var dom=document.getElementById;

function show_pix(){
    

    ////NO need to edit beyond here/////////////

    
    for (p=0;p<dropimages.length;p++){
        preloadedimages[p]=new Image();
        preloadedimages[p].src=dropimages[p];
    }

    if (ie4||dom){
    document.write('<table align="left"><tr><td style="padding-right:10px;"><div style="position:relative;width:'+slideshow_width+';height:'+slideshow_height+';overflow:hidden"><div id="canvas0" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';background-color:'+slidebgcolor+';left:-'+slideshow_width+'"></div><div id="canvas1" style="position:absolute;width:'+slideshow_width+';height:'+slideshow_height+';background-color:'+slidebgcolor+';left:-'+slideshow_width+'"></div></div></td></tr></table>');
    }else{
    document.write('<a href="javascript:rotatelink()"><img name="defaultslide" src="'+dropimages[0]+'" border=0/></a>');
    }
    
    if (ie4||dom){
        window.onload=function(){startit();change_quote_text();};
    }else{
        setInterval("rotateimage()",pause);
    }
    
}

function movepic(){
    if (curpos<0){
        curpos=Math.min(curpos+degree,0);
        tempobj.style.left=curpos+"px";
    }else{
        clearInterval(dropslide);
        nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1";
        tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas);
        var slideimage='<img src="'+dropimages[curimageindex]+'" border=0 style="border:1px solid rgb(204, 204, 204);padding:2px;margin-right:10px;"style="border:1px solid rgb(204, 204, 204);padding:2px;margin-right:10px;" />';
        tempobj.innerHTML=(droplinks[curimageindex]!="")? '<a href="'+droplinks[curimageindex]+'">'+slideimage+'</a>' : slideimage;
        nextimageindex=(nextimageindex<dropimages.length-1)? nextimageindex+1 : 0;
        setTimeout("rotateimage()",pause);
    }
}

function rotateimage(){
    if (ie4||dom){
        resetit(curcanvas);
        var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas);
        crossobj.style.zIndex++;
        var temp='setInterval("movepic()",50)';
        dropslide=eval(temp);
        curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0";
    }else{
        document.images.defaultslide.src=dropimages[curimageindex];
    }    
    linkindex=curimageindex;
    curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0;
}

function rotatelink(){
    if (droplinks[linkindex]!=""){
        window.location=droplinks[linkindex];
    }
}

function resetit(what){
    curpos=parseInt(slideshow_width)*(-1);
    var crossobj=ie4? eval("document.all."+what) : document.getElementById(what);
    crossobj.style.left=curpos+"px";
}

function startit(){
    var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas);
    crossobj.innerHTML='<a href="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0 style="border:1px solid rgb(204, 204, 204);padding:2px;margin-right:10px;" /></a>';
    rotateimage();
}