function initProgram () {
	var element = document.getElementById("login-form");
	if(element != undefined){
		var fx = new Fx.Slide($("login-form"));
		fx.hide();
		$("login-link").addEvent('click', function(){
			fx.toggle();
			if (this.className.indexOf("active") != -1) {
				this.className = this.className.replace("active", "");
			} else {
				this.className += " active";
			}
		});
	}
}

if (window.addEventListener) {
	window.addEventListener("load", initProgram, false);
}
else if (window.attachEvent) {
	window.attachEvent("onload", initProgram);
}