// JavaScript Document
function eQhome() {
        var lefth, righth, dif;
        lefth=document.getElementById('indexl').offsetHeight;
        righth=document.getElementById('indexr').offsetHeight + 15;
        if (righth > lefth) {
                dif = righth - lefth;
                document.getElementById('eqleft').style.paddingBottom=dif+"px";
//                document.getElementById('eqleft').style.paddingBottom="100px";
		}
}

// slide show on Home page
var sLs = ["images/slide2u.jpg","images/slide1.jpg",];
var sGs = ["images/slide2_gr.gif","images/slide1_gr.gif",];
//setTimeout('sL()',3000);
var i=0;
function sL(){
        if (document.images) {
                document.getElementById("slideH").src = sLs[i];
//				document.getElementById("slideG").src = sGs[i];
                i=i+1;
                if (i > 1) { i=i-2 }
                setTimeout( 'sL()',3000);
        }
}

setTimeout('sG()',1500);
var j=0;
function sG(){
        if (document.images) {
//                document.getElementById("slideH").src = sLs[i];
				document.getElementById("slideG").src = sGs[j];
                j=j+1;
                if (j > 1) { j=j-2 }
                setTimeout( 'sG()',3000);
        }
}

