$(document).ready(function(){
	//$container = $('#seo-main-container');
	$button = $('#btn-seofooter');
	$hidableContent = $('#seo-main-content');
	
	$hidableContent.hide();
	$button.click(function(){
		$hidableContent.toggle();
	});
});

