//JQUERY
$(document).ready(function(){
    	$(".errorJS").remove();
	
	$("[title]").simpletooltip();

	// Password field
	$('#fauxPassword').show();
	$('#login_password').hide();

	$('#fauxPassword').focus(function() {
		$('#fauxPassword').hide();
		$('#login_password').show();
		$('#login_password').focus();
	});
	$('#login_password').blur(function() {
		if($('#login_password').val() == '') {
			$('#fauxPassword').show();
			$('#login_password').hide();
		}
	});
     
	$('#login_username').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
				$(this).css("font-style", "normal");
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
				$(this).css("font-style", "italic");
			}
		});
	});
});

