$(document).ready(function() {
	$('.clearInput').example(function() {
		return $(this).attr('title');
	});
	$('#passwordBefore').focus(function() {
		$(this).css("display", "none");
		$('#passwordAfter').css("display", "inline");
		$('#passwordAfter').focus();
	});
});
