	
	$(function() {
					
		/* open the first menu branch  */
		$('#sidebar ul.tree > li:first > ul').css('display','block').parent('li').addClass('open');
		
		/* manage other branches */
		$('#sidebar ul.tree > li > a').click( function() {
			$(this).parent('li').siblings().removeClass('open').find('ul').slideUp();
			$(this).parent('li').addClass('open');
			$(this).next('ul').slideDown();
			return false;
		});
		
		/* sidebar search boxes */
		$('#sidebar form input')
		.focus( function() { if($(this).val() == 'search') $(this).val(''); })
		.blur( function() { if($(this).val() == '') $(this).val('search'); });
		
		/* vertically center the tabs */
		$('#header ul li a strong').each(function() {
			var p = Math.round((36 - $(this).height()) / 2) + 'px';
			$(this).css('padding-top', p);
		});
							
	});	