	
	
	var $j = jQuery.noConflict();
	$j(document).ready(function() {
	
		$j.fn.cleardefault = function() {
		return this.focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
			$j(this).css({'background-color' : '#ffffff'});
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
			$j(this).css({'background-color' : '#e6e6e6'});
		});
	};
	$j(".clearit input, .clearit textarea, .clearit email, .clearit text").cleardefault();
	
	});
  
	
	// we dont want any of the gravity labels so remove them
	$j('.gfield_label').remove();

		

