(function($){
	$().ready(function(){

		$('form a.ajx').click(function(){$(this).parents('form').find('input[type=text]:first').val($(this).html());return false;});
		$('h2 .ajx').click(function(){if($(this).parent().next().css('display')!='none')$(this).next().html($(this).next().html().replace('↓','↑'));else $(this).next().html($(this).next().html().replace('↑','↓'));$(this).parent().next().slideToggle();return false;});

		$('select.toggle').change(function(){
				$('.toggled').slideToggle();
		});
	});
})(jQuery);

