// JavaScript Document

function clickMeetingTab(){
	var tab = $("#meetingTab");	
	if ($(tab).attr("class") == "closed"){
		openMeetingTab();
	}else{		
		closeMeetingTab();
	}	
	return false;
}

function openMeetingTab(){
	var tab = $("#meetingTab");
	var height = $("UL", tab).height();
	if ($(tab).attr("class") == "closed") {
		$(tab).attr("class", "open");
		$(tab).animate({top: "-="+height+"px"}, 250);
	}
}

function closeMeetingTab (){
	var tab = $("#meetingTab");
	var height = $("UL", tab).height();
	if ($(tab).attr("class") == "open"){
		$(tab).attr("class", "closed");
		$(tab).animate({top: "+="+height+"px"}, 250);
	}
}