

if (document.images) {
ads = new Array(6);
ads[0] ="1024home/825/1.png";
ads[1] ="1024home/825/2.png";
ads[2] ="1024home/825/3.png";
ads[3] ="1024home/825/4.png";
ads[4] ="1024home/825/5.png";
ads[5] ="1024home/825/6.png";

dots = new Array(6);
dots[0] ="1024home/825/dots1.jpg";
dots[1] ="1024home/825/dots2.jpg";
dots[2] ="1024home/825/dots3.jpg";
dots[3] ="1024home/825/dots4.jpg";
dots[4] ="1024home/825/dots5.jpg";
dots[5] ="1024home/825/dots6.jpg";
}




var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 8000);
		counter++;
		if (counter >= 6)
		counter = 0;
		document.bannerad.src = ads[counter];
		document.dots.src = dots[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}

    function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }


