<!-- Begin
var speed = 6000

var t
var j = 0
var p = 2

var preLoad = new Array()
preLoad[0] = new Image()
preLoad[0].src = "x1.png"
preLoad[0].alt = "Não deixe o desperdício com impressão..."
preLoad[1] = new Image()
preLoad[1].src = "x2.png"
preLoad[1].alt = "...reduzir seu potencial para crescer."
//preLoad[2] = new Image()
//preLoad[2].src = "x3.png"
//preLoad[2].alt = "Controlando o desperdício com impressão..."
//preLoad[3] = new Image()
//preLoad[3].src = "x4.png" 
//preLoad[3].alt = "...cumprimos nosso papel com meio ambiente."


var tpLastPage = null;
var tpLastSheet = null;



function Show(aPage, aSheet)
{
	var tabPage = window.document.getElementById(aPage);
	var tabSheet = window.document.getElementById(aSheet);
	var iframeGroupBy;

	if (tpLastPage == null)
	{
		tpLastPage = window.document.getElementById("tabpage_server"); 
		tpLastSheet = window.document.getElementById("tabsheet_server");
	}
	
	if (tpLastPage != null)
	{
		tpLastPage.style.zIndex = 1;
		tpLastSheet.style.borderBottomColor = "#cde1f1";	
	};
	
	
	tabPage.style.zIndex=101;
	//tabPage.disabled = false;
	tabSheet.style.borderBottomColor = "#6095ab";

	
	tpLastPage = tabPage; 
	tpLastSheet = tabSheet;
	
}

function jsSlideShow(){
var slide_show



   if (document){

   slide_show =  document.getElementById("slide_show")

   }
   
   if (slide_show)
   {
	   slide_show.src = preLoad[j].src
	   slide_show.alt = preLoad[j].alt
	   j = j + 1
	   if (j > (p-1)) j=0
		   t = setTimeout('jsSlideShow()', speed)
   }
   

}
//  End -->

