$(document).ready(function() {
	swapValue = [];
		
		jQuery("#id_name, #id_email, #id_url, #id_comment").each(function(i){
		
		   swapValue[i] = jQuery(this).val();
			
			jQuery(this).clearingInput( { text: jQuery(this).val() } );
			jQuery(this).attr('default',jQuery(this).val());
		      
		});	
});