$(document).ready(function() {
	$('H1').each(function() { 
		var h = $(this).html(); 
		var index = h.indexOf(' '); 
		if(index == -1) { 
		index = h.length; 
		} 
		$(this).html('<span class="firstword">' + h.substring(0, index) + '</span>' + h.substring(index, h.length)); 
	});
	
	$('#text H1').next('P').addClass('notice');
	
	$("#side-menu .sub-side-menu").hide();

	$("#side-menu a").each(function(){
		var thisurl = location.pathname;
		var thishref = $(this).attr('href');
		if(thishref == thisurl){ $(this).addClass('current'); }
	});
	
	$("#side-menu LI LI .current").parents('li').show();
	$("#side-menu .current").parents('li').children(".sub-side-menu").show();
});
