// JavaScript Document

window.onload = function(){
	
		
		//alinhaDivs("acontece","informacoes");
		//alinhaDivs("acontece","homeConteudo");
	

		var Scroll = new sandecom.Scroll('menu','','MenuBtnUP','MenuBtnDOWN',
							{									
								orientation   : "vertical",
								step          : 32,
								actionButton  : "onmouseover",
								velocity      : 2
							});			
	
	/*
		var Scroll = new sandecom.Scroll('homeConteudo','','MeioBtnUP','MeioBtnDOWN',
							{									
								orientation      : "vertical",
								step             : 20,
								actionButton     : "onclick",
								areaFinalHeight  : "394px"
							});		
	
	

		var slideShow1 = new sandecom.SlideShow('SlideShow01',
						{
						timeTransition     : 5,		
						fade               : 3,
						activeControl      : false
						});

	*/
}



alinhaDivs = function(div1, div2){

	var elem1 = document.getElementById(div1);
	var elem2 = document.getElementById(div2);
	
	var x = elem1.clientHeight;
	var y = elem2.clientHeight;			
		
	var tam = 0;
		
	if(x>=y){
		tam = x;	
	}else{
		tam = y;
	}
		
	elem1.style.height = tam + "px";
	elem2.style.height = tam + "px";
	
}
