$('document').ready(function(){
	//form input focus/blur
	$("input[@type=password], input[@type=text], textarea").focus(function() {
		val = $(this).attr('def');
		if ($(this).val() == val) $(this).val('');
		$(this).css('border-color', '#919191');
		$(this).blur(function(){
			if ($(this).val() == '') $(this).val(val);
			$(this).css('border-color', '#CFCFCF');
		});
	});
	

	//login inputs
	$("#user-login-form .form-text").focus(function() {
		if ($(this).val() < 1) $(this).parents().prev('label').css('visibility', 'hidden');
		if ($(this).val() != '') $(this).select();
		$(this).blur(function(){
			if ($(this).val().length < 1) $(this).parents().prev('label').css('visibility', 'visible');
		});
	});
});