$(function() {

	// Clear form fields.
	$('input').focus(function(){
		value = $(this).val();
		$(this).val('');
	}).blur(function(){
		if($(this).val() == '') {
			$(this).val(value);
		}
	});
	$('input').change(function(){
		$(this).unbind();
	});
	
	// ToDo: Make this work.
	// Switch password fields.
	// $('#password_prompt').unbind();
	// $('#password_prompt').focus(function(){
	// 	$(this).hide();
	// 	$('#password').show();
	// 	$('#password').focus();
	//     }).blur(function(){
	// 	if($('#password').val() == '') {
	// 		$('#password').hide();
	// 		$(this).show();
	// 	}
	// });
	
});
