// $(document).ready(function() {
// 	// clear inputs for all forms
// 	$('form').clearFocus();
// });
// 
// (function($) {
// 	$.fn.clearFocus = function() {  
// 		$('input:text', $(this)).live('focus', function() {
// 			if (this.value == this.defaultValue) {
// 				$(this).val('');
// 			}
// 		}).live('blur', function() {
// 			if (!this.value.length) {
// 				$(this).val(this.defaultValue);
// 			}
// 		});
// 		return this;
// 	};
// })(jQuery);
