$(document).ready(function() {
	$('.password').prepend('<input name="fake_password" id="fake_password" value="Enter Your Password" type="text"  title="Password is required" class="fieldtext required" />');
	$('#password').hide();
	$('#login-form').validate();
	$('#username').focus(function(){$(this).attr('value', '')})
	$('#fake_password').focus(function(){$(this).hide();$('#password').show().focus();})
});
