$('academyabout').onclick = function(){
	window.location = BASE_URL + 'about';	
}

$('eventsupcoming').onclick = function(){
	window.location = BASE_URL + 'calendar';
}

$('appproc').onclick = function(){
	window.location = BASE_URL + 'application';
}

function changebg(el){
	var param = el.getAttribute('param');
	$(param).onmouseover = function(){
		this.className = 'bgbackgroundchange';	
	}
	$(param).onmouseout = function(){
		this.className = 'hpevent';
	}
	$(param).onclick = function(){
		var a = this.getElementsByTagName('a')[0];
		window.location = a.getAttribute('href');
	}
}