// JavaScript Document
//Functions to control the whats happening tab
function popopen(){
	target = document.getElementById('whats-happening');
	target.style.bottom = "-5px";
}

function popclosed(){
	target = document.getElementById('whats-happening');
	target.style.bottom = "-96px";
}
