// JavaScript Document


window.onload = function(){


	// ATIVA MENU
	var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
	
	
		
	// GERANDO ALINHAMENTOS	
	alinhaDivs("coluna01","coluna02");
	alinhaDivs("coluna01","meio",0,5);
	alinhaDivs("esquerdaContent","meio");

	
	// GERANDO CORNERS
	Rico.Corner.round('esquerda',{color:'#CECFCE',bgColor:'#56BBDA',corners:"bottom"});
	Rico.Corner.round('acontece',{color:'#008EB5',bgColor:'#56BBDA',corners:"top"});
	Rico.Corner.round('destaques',{color:'#E7F3F7',bgColor:'#56BBDA',corners:"bottom"});
	Rico.Corner.round('info01',{color:'#F7E6BD',bgColor:'#56BBDA'});
	Rico.Corner.round('info02',{color:'#F1E725',bgColor:'#56BBDA'});
	
	
	// ATIVANDO CONTROLES DE SLIDE SHOWS	
	

	var slideShow1 = new sandecom.SlideShow('SlideShow1',
										   {
												timeTransition  : 8,
												fade            : 5,
												activeControl   : false										
												
	
    										});
	

	var slideShowNoticias = new sandecom.SlideShow('SlideShowNoticias', 
										   {
											   
												timeTransition  : 3,												
												fade            : 10,
												
												
												activeControl   : true,

												heightTitle     : 20,
												alphaTitle      : 80,
												bgTitle         : "#FFF",
												padTitle        : 5,
																										
															
												borderPause     : "none",
												bgPause         : "url(../sandecom/icones/bgPause.gif)",
												colorPause      : "#A63A0D",
												
												borderPlay      : "none",
												bgPlay          : "url(../sandecom/icones/bgPlay.gif)",
												colorPlay       : "#FFF",
						
												borderIndexAct  : "none",
												bgIndexAct      : "url(../sandecom/icones/bgIndexAct.gif)",
												colorIndexAct   : "#666",

												borderIndexInact: "none",
												bgIndexInact    : "url(../sandecom/icones/bgIndexInact.gif)",
												colorIndexInact : "#333"	
    										});
	

initbox();
}



alinhaDivs = function(div1, div2, variacao1, variacao2){


	
	if(variacao1==null)variacao1=0;;
	if(variacao2==null)variacao2=0;;

	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 + variacao1) + "px";
	elem2.style.height = (tam + variacao2) + "px";
	
}

alinhaTabelaHome = 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(y<x){
		if(x>=y){
			tam = x;	
		}else{
			tam = y;
		}
		
		elem1.style.height = tam + "px";
		elem2.style.height = tam + "px";
	}
}



alinhaPrimeiroPelaSoma = function(div1, div2, div3, div4){

	
	var elem1 = document.getElementById(div1);
	var elem2 = document.getElementById(div2);
	var elem3 = document.getElementById(div3);
	var elem4 = document.getElementById(div4);
	
		
	var x = elem1.clientHeight;
	var y = elem2.clientHeight;			
	
	if(elem3){
		y = y + elem3.clientHeight;
		
		if(elem4){
			y = y + elem4.clientHeight;
		}
	}
		
	var tam = 0;
		
	if(x<y){
		elem1.style.height = y + "px";
	}
	
	
}