$(function(){
	var count = 0;
	// Get All h2 tags and build li tags around them
	
	//$('.report #links').prepend("<h3>" + $('.report h1').html() + "</h3>");
	
	$('.report-content h2').each(function(){
		
		var el = $(this).text();		
		
		var ell = el.replace(/ /g, '');
		
		$('#links ul').append('<li><a href="#' + ell.toLowerCase() + '">' + el.toLowerCase() + "</a></li>");
		// Must add # first page
		var set = $(this).nextUntil("h2").andSelf();
		
		var test = $('#' + ell.toLowerCase()).height();
		
		set.wrapAll('<div id="' + ell.toLowerCase() + '"/>');
	
		count += $('.hidden > div').width();
	});
	
	//$('.hidden ').css('width', count);
});
