//JS Version 10
//Dated: NOvember 08, 2009
$(function(){
	
	//header
	$("div#header").load("header.html");
	
	//Mid Nav
	$("div#midnavbg").load("midnav.html");
	
	//Footer
	$("div#footer").load("footer.html");
	
	
	
	
});

$(function()
{
	<!--ACORDIAN-->
	$('#midInside .content').hide();
	$('#midInside .content:eq(0)').show();
	$('#midInside h2').click(function()
	{
		
		$(this).next('.content').slideToggle('slow').siblings('.content:visible').slideToggle('slow');
	});
	<!-- eND ACORDIAN-->
});
