// JavaScript Document
jQuery(document).ready(function($) {

	$('#extras h2').each(function(e) {

		$(this).before('<div class="h2-head"><h2>'+$(this).html()+'</h2></div>').remove();

	});

});

