      $(document).ready(function() {
			/* kjsdfhksjks */					 
			var i=1;
			for (i=1;i <= 10; i++)  /* This number, 10, is based on the number of buttons/arrows/content */
			{ 
				$('#faq0'+i+'Content').hide(); 
				/* from audiences.js		 */
				$('#audSubtext0'+i+'').hide();
				$('#li0'+i).removeClass("arrowRight");
			
			}

			var i=2;
			for (i=2;i <= 10; i++)
			{
				$('#but01Content').show();		
				$('#but0'+i+'Content').hide();
				
				$('#arrowDownContent01').show();
				$('#arrowDownContent0'+i).hide();
		
				if (bypassChangeContent = 'yes') { $('#li01').addClass("arrowRight"); }
				/* else if (bypassChangeContent = 'no') { $('#li01').removeClass("arrowRight"); } */
				
				$('#li0'+i).removeClass("arrowRight");

			}
		//----------------------------------
		function changeContent(x)
		{
		var i=1;
			for (i=1;i <= 10; i++)  /* This number, 10, is based on the number of buttons/arrows/content */
			{
				if (i != x) 
				{
					$('#but0'+i+'Content').hide(600);
					$('#arrowDownContent0'+i).hide(600);
					$('#li0'+i).removeClass("arrowRight"); 
					/* kjkjdkdjkdj */
					$('#faq0'+i+'Content').hide(600);
					/*  from audiences.js */
					$('#audSubtext0'+i+'').hide(600);
					$('#audienceListHeading0'+i).removeClass("red");
				}
			}  
			
		$('#but0'+x+'Content').show(600);
		$('#arrowDownContent0'+x).show(600);
		$('#li0'+x).addClass("arrowRight");
		/* ksdjhfkjsdhkjshk */
		$('#startText').hide(600);
		$('#faq0'+x+'Content').show(600);	
		/* from audiences.js */
		$('#audSubtext0'+x+'').show(600);
		}
		//----------------------------------
        $('#but01').click(function() { changeContent(1); $('#audienceListHeading01').addClass("red"); });
		$('#but02').click(function() { changeContent(2); $('#audienceListHeading02').addClass("red"); });
		$('#but03').click(function() { changeContent(3); $('#audienceListHeading03').addClass("red");});
		$('#but04').click(function() { changeContent(4); $('#audienceListHeading04').addClass("red"); });
		$('#but05').click(function() { changeContent(5); $('#audienceListHeading05').addClass("red"); });
		$('#but06').click(function() { changeContent(6); });
		$('#but07').click(function() { changeContent(7); });
		$('#but08').click(function() { changeContent(8); });
		$('#but09').click(function() { changeContent(9); });
		$('#but010').click(function() { changeContent(10); });
		
		/* var u = $.url.param("earthbox-audience"); */
		/* $('#but0'+u+'Content').show(); */
		/* $('#audSubtext0'+u+'').show(); */
		/* $('#li0'+u+'').addClass("arrowRight"); */
		/* $('#audienceListHeading0'+u).addClass("red"); */

		var p = $.url.param("faqQuery");
		$('#startText').hide(600);
		$('#but01Content').hide(); 
		$('#but0'+p+'Content').show(600);  
		$('#faq0'+p+'Content').show(600);
		
});


