(function($) {
	$(document).ready(function() {
		
		//limpar todos os campos de input	
		$('input[type="text"],textarea', 'body:not(.wp-admin)').filter(':not(#link)').each(function() {
			$(this).data('defaultValue', $(this).val());

			$(this).focus(function() {
				if ($(this).val() == $(this).data('defaultValue')) $(this).val('');
			});
			
			$(this).blur(function() {
				if ($(this).val() == '') $(this).val($(this).data('defaultValue'));
			});
		});
				
		$('form', 'body:not(.wp-admin)').submit(function() {
			$('input[type="text"],textarea').each(function() {
				if ($(this).val() == $(this).data('defaultValue')) $(this).val('');
			});
			return true;
		});

		$('#postexcerpt').appendTo('#titlediv');


		
	});
})(jQuery);
