      //changes text on se;ected elememnts using .innerHTML properties
	  function linkinfo(loc)
	  {
        switch(loc)
		  {
         case 1:
		   document.getElementById('plinkinfo').innerHTML = 'Info for Section 1 blah, blah, blah!';
		   break;
         case 2:
		   document.getElementById('plinkinfo').innerHTML = 'Info for Section 2 blah, blah, blah!';
		   break;
         case 3:
		   document.getElementById('plinkinfo').innerHTML = 'Info for Section 3 blah, blah, blah!';
		   break;
         case 4:
		   document.getElementById('plinkinfo').innerHTML = 'Info for Section 4 blah, blah, blah!';
		   break;
         case 5:
		   document.getElementById('plinkinfo').innerHTML = 'Info for Section 5 blah, blah, blah!';
		   break;
         case 6:
		   document.getElementById('plinkinfox').innerHTML = 'Info for Section 6 blah, blah, blah!';
		   break;
         case 7:
		   document.getElementById('plinkinfox').innerHTML = 'Info for Section 7 blah, blah, blah!';
		   break;
         case 8:
		   document.getElementById('plinkinfox').innerHTML = 'Info for Section 8 blah, blah, blah!';
		   break;
         case 9:
		   document.getElementById('plinkinfox').innerHTML = 'Info for Section 9 blah, blah, blah!';
		   break;
         case 10:
		   document.getElementById('plinkinfox').innerHTML = 'Info for Section 10 blah, blah, blah!';
		   break; 
		  }//end case/select
	  }//end function  linkinfo(loc)******************************************************

	  function reveal(loc)//start function**********************************************
	  {//gives additional info below when mouseover on links below banner, uses <p name="revealtext"> as target for innerHTML
        switch(loc)
		  {

         case 11:
		   document.getElementById('revealtext').innerHTML = 'Regional &amp; Economic Development for More than 50 Years';
		   break;
         case 22:
		   document.getElementById('revealtext').innerHTML = 'Scenic Byways of the Adirondack North Country region';
		   break;	  
         case 33:
		   document.getElementById('revealtext').innerHTML = 'Craft Enterprise and Community Development';
		   break;
         case 44:
		   document.getElementById('revealtext').innerHTML = 'Development and Communications';
		   break;	
         case 55:
		   document.getElementById('revealtext').innerHTML = 'Forest &amp; Pasture';
		   break;		   
		  }//end switch   
	  }// end function reveal(loc)******************************************************************

	  function business(x)//start function**********************************************
	  {//gives additional info for pics & businesses in slide show
        switch(x)
		  {
         case 1:
		   document.getElementById('busdescription').innerHTML = 'Adirondack Park Regional Assessment';
		   break;
         case 2:
		   document.getElementById('busdescription').innerHTML = 'Scenic Byways Website';
		   break;	  
         case 3:
		   document.getElementById('busdescription').innerHTML = 'Regional Market Trends Assessment';
		   break;	  
         case 4:
		   document.getElementById('busdescription').innerHTML = 'American Handmade Wholesale Directory';
		   break;	
          
		  }//end switch   
	  }// end function business(x)******************************************************************
	  function clr()//clears description set above
	  {document.getElementById('revealtext').innerHTML = '';}

  //start function switchpics()*************************************************************

	  	  function switchpics()
		   {
			document.specialPics.src = './picshow/ps' + x + '.jpg';;
            business(x);//change description
		    if(x < (count))
			   x++;
		    else x = 1;
		    return;
		   }
  //end function switchpics()*************************************************************
