

$(function() {
	$('a#showRemindPW').click(function() {
        $('#remindPWresponse').text('');
		$('form#remindPW').slideDown(); 
		return false;
	});
});




$(function() {
	$('form#remindPW').submit( function() {
	    var sel='#remindPWresponse';

	    $(sel).one('ajaxError', function(e,r,s){
	    	$(this).text('There was an error. Please contact the administrator.');
	    	$('#remindPW').slideUp();
	    });
	    
		$(this).ajaxSubmit(
			{
				target:sel ,
				success: function() {$('#remindPW').slideUp(); }
			}
		);
		
		return false;
	});
});

