$(window).bind("load", function() { 
	$('#sidemenu>ul>li>a').each(function(){
		if($(this).next().length == 1) {
			$(this).click(function() {
				$(this).next().animate({opacity:'toggle',height:'toggle'});
				return false;
			});
		}
	});

	$('#content .expander').click(function(){
		$(this).next().animate({height:'toggle',opacity:'toggle'});
		$(this).toggleClass('active');
		return false;
	}).next().hide();

	$('.required label').append(' (*)');
}); 
