 function showHide(name, linkref) {
        var style = document.getElementById(name).style;
        if(style.display == 'none') {
          style.display = 'block';
          linkref.src = 'images/close.gif';
          linkref.title = "Click to Close Section."
        } // end of if
        else {
          style.display = 'none';
          linkref.src = 'images/expand.gif';
          linkref.title = "Click to Expand Section."
        } // end of else
      } // end of function showHide
	  

/* Script coda begins-- you can add this script into the page header */
		jQuery(window).bind("load", function() {
			jQuery("div#slider1").codaSlider()
				// jQuery("div#slider2").codaSlider()
				// etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.

				//call every __ seconds
				  autoSlide = setInterval(function()
				  {
					$("#right-link").click();
					}, 5000);
					
					//Added to clear the timer on mouseover and restart on mouseout
					$("#panelContainer").mouseover(function(){
							clearInterval(autoSlide);
						}				
					);
					$("#panelContainer").mouseout(function(){
							autoSlide = setInterval(function()
							  {
								$("#right-link").click();
								}, 5000);
						}				
					);

			});
/* Script coda ends */

