jQuery(function(){
	jQuery('dt').each(function() {
        var pp_dt = jQuery(this);
		var pp_selection = pp_dt.next('dd').andSelf();
		pp_selection.wrapAll('<div>');
    });
});
