
function initPasswordLink() {
	setTimeout("jQuery('#password').attr('value', '');", 100);
	jQuery('#changepass').bind('click', function () {
		jQuery('p.password_fields').show();
		jQuery('p.password_display').hide();
		return(false);
	});
}

jQuery(document).ready(function ($) { try {
	initPasswordLink();

} catch (err) {
	//if(window.console) { window.console.log(err) }
	return false;
}	
});

