	$(document).ready(function() {
		$("table.seo_footer h2").next().hide();
		
		$("table.seo_footer h2").click(function() {
			$(this).next().slideToggle();
		});
	});
	
