$(document).ready(function(){
	sidebarIncludes();
});

function sidebarIncludes() {
	// get all sidebar divs with class of include
	$("#secondaryInfo .include").each(function(){
		// get the current div's id value
		var fileToPull = $(this).attr('id');
		// select the current element id and load correspondingly named include file
		$("#"+fileToPull).load('includes/'+fileToPull+'.html .loadIn');
	});
}