jQuery(function($){
	
	$("#navigation ul li").hover(function() {
		$(this).addClass('hover');
		$(this).find(".dd").show();
		$(this).find("a:eq(0)").addClass('hover');
		}, function(e) {
		$(this).removeClass('hover');
		$(this).find(".dd").hide();
		$(this).find("a:eq(0)").removeClass('hover');
	});
	
	$('.entry h2.innertitle:not(:first)').addClass('innertitle-middle');
	$('.section .section-title').click(function() {
		if (!$(this).next().is(':visible')) {
			$('.section .section-text').hide();
			$('.section .section-title .bullet').text('+');
		};
		$(this).find('.bullet').html(($(this).find('.bullet').text()=='+'?'&ndash;':'+'));
		$(this).next().toggle();
		return false;
	});
	if ( $('body.home .sidebar').height() + 21 < $('body.home .content').height() ) {
		$('body.home .sidebar').height($('body.home .content').height() + 40);
	};
	//$('body.home .sidebar'). 
})
	
