$('div.date-header').slice(1);
Should do it.
slice Is the fastest function!
Because :first is a jQuery extension and not part of the CSS specification, queries using :first cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method.
Alternative way, which still uses the querySelectorAll function:
$('div.date-header').not(':first');