$(function(){
	/** form login support **/
	$('input#username,input#password').focus(function(){
		$(this).css('border','1px solid #e20019');
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	
	$('input#username,input#password').click(function(){
		$(this).css('border','1px solid #e20019');
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
	$('input#username,input#password').blur(function(){
		$(this).css('border','1px solid #000');
		if (this.value == '') {
			this.value = this.defaultValue;
		}	
	});
	/** fine login support **/
});
