// JavaScript Document

function fadeUp(e) {
	if(e.start() < 1) {
		e.start();
	}
}

function fadeDown(e) {
	if(e.start() > 0) {
		e.start();
	}
}
