function clearThis(f) {
  f.value = "";
}

// start jquery functions
$(function() {
  $("#password").addClass('hide');
  $("a.getpass").toggle(function() {	$("#password").slideDown('fast'); }, function() {  $("#password").slideUp('fast'); });
});

// rollover nav functions
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navigation");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;


Event.observe(window, 'load', function() {
  $('getpass').onclick = function() { 
    Effect.toggle('password', 'blind', { duration: 0.5 });
  }
  $('password').hide();
});


