
	// VERIFY THAT THE BROWSER IS ONE THAT SUPPORTS THE IMG OBJECT
	// BY VERIFYING THAT ONE OF THE FOLLOWING IS TRUE:
	//	CASE 1  the client is Netscape version 3 or higher,  		 
	//	CASE 2  the client is Netscape version 2.02 on an OS/2 platform, or	 
	//	CASE 3  the client is Microsoft Internet Explorer version 4 or higher.

	var bAnimate = false;

	// CASE 1:
	bAnimate=(((navigator.appName == "Netscape") && 
		(parseInt(navigator.appVersion) >= 3 )) || 

	// CASE 2:
	(navigator.userAgent == "Mozilla/2.02E (OS/2; I)") || 

	// CASE 3:
	((navigator.appName == "Microsoft Internet Explorer") && 
		(parseInt(navigator.appVersion) >= 4 )));

	if (bAnimate){
		img1= new Image();
		img1.src="img/buttons/about-off.gif";
		img2= new Image();
		img2.src="img/buttons/groups-off.gif";
		img3= new Image();
		img3.src="img/buttons/schedule-off.gif";
		img4= new Image();
		img4.src="img/buttons/issues-off.gif";
		img5= new Image();
		img5.src="img/buttons/government-off.gif";
		img6= new Image();
		img6.src="img/buttons/speakout-off.gif";		
		img7= new Image();
		img7.src="img/buttons/home-off.gif";
		
		img11= new Image();
		img11.src="img/buttons/about-on.gif";
		img12= new Image();
		img12.src="img/buttons/groups-on.gif";
		img13= new Image();
		img13.src="img/buttons/schedule-on.gif";
		img14= new Image();
		img14.src="img/buttons/issues-on.gif";
		img15= new Image();
		img15.src="img/buttons/government-on.gif";
		img16= new Image();
		img16.src="img/buttons/speakout-on.gif";
		img17= new Image();
		img17.src="img/buttons/home-on.gif";

		}
	else{	
		document.write("<FONT COLOR='white' SIZE='5'><BR>Your browser does not support JavaScript Animation!</FONT>");
		}
		

		function ShowHide(id) {
			divs = document.getElementsByTagName("div");
			if (divs[id].style.display == 'inline')
				divs[id].style.display = 'none';
			else
				divs[id].style.display = 'inline';
		} 
	
