$(document).ready(function(){
	 //Comando para o Slide Show dos Parceiros
	$('#parceiros-logos').cycle({ 
		fx:      'fade',
		random:   1,
    	timeout:  4000  
	 });
	//Passando as dicas
	$('#dicas').cycle({ 
		fx:     'scrollVert', 
		delay: 	-1000 , 
		timeout: 8000, 
		next:   '#next-dica',
		prev:   '#prev-dica' 
	});	
	
	obj_1 = document.getElementById('left-sidebar');
    obj_2 = document.getElementById('right-sidebar');
	obj_3 = document.getElementById('content');
    obj_container = document.getElementById('wrapper');
    altura_pri = parseInt(obj_container.offsetHeight ) + 'px';
    obj_1.style.height = obj_2.style.height = obj_3.style.height = altura_pri;	
});  

