$(document).ready(function() {    
	$("#corp-sponsors").load("corp_sponsors.html");
	$("#media-sponsors").load("media_sponsors.html");
	$("#past-walks").load("past_walks.html");
	$("#header-include").load("header_include.html");
	$("#menu-include").load("menu_include.html");
/*
To install buttons add a class of .jclude-btn to a link 
then make sure the href in the link is the html doc that you want to load into #content-area 
*/
	$('.jclude-btn').live('click', function(e){
		e.preventDefault();
		var url = $(this).attr('href');  
		$("#content-area").load(url);
	});

});

