$(function() {
	jQuery(function(){ jQuery('a.lb').lightBox(); });
});

function o(obj){
	return document.getElementById(obj);
}

function agendaBaixo(){
	var ax = o('agenda-txt').offsetTop;
	if (ax > -280)
		o('agenda-txt').style.top = (ax - 40)+'px';
}

function agendaCima(){
	var ax = o('agenda-txt').offsetTop;
	if (ax <0)
		o('agenda-txt').style.top = (ax + 40)+'px';
}