window.onload = function() {
	Effect.SlideDown(document.getElementById('content-block'));

	o = document.getElementById('current')
	o.onclick = function() {
		Effect.toggle(document.getElementById('content-block'), 'slide');
		if (o.className == o.title + '-off') {
			o.className = o.title;
		} else {
			o.className = o.title + '-off';			
		}
	}
}
