$j = jQuery.noConflict();
$j(document).ready(function() {  
$j('input[type="text"], textarea').addClass("idleField");  
	$j.Overlabel();
}); 

jQuery.Overlabel = function() {

	$j('input[type="text"], textarea').focus(function() {  
		$j(this).removeClass("idleField").addClass("focusField");  
		 if (this.value == this.defaultValue){
			this.value = '';
		 }  
		if(this.value != this.defaultValue){  
			this.select();
		}  
		});  
	 $j('input[type="text"], textarea').blur(function() {  
		$j(this).removeClass("focusField").addClass("idleField");
			if ($j.trim(this.value) == ''){  
				this.value = (this.defaultValue ? this.defaultValue : '');
			}  
		});  
	}
	

