

jQuery(function(){
	
	// alias jQuery to $j
	$j = jQuery; 
	
	// load nav
	$('#nav').load('/assets/includes/nav.html');
	
	// load footer (except on homepage)
	if (!$('body').hasClass('home')) {
		$('#footer').load('/assets/includes/footer.html');
	}
	
	if ($('body').hasClass('article')) {
		if ($('head title').html() == "Paul Reller L.Ac.") {
			$('head title').append(" | " + $('#col2 h1').html());
		}
	}
	
});

