$(function(){
	$('#news table dd').hide();
	$('#news table dt').click(function(){
		$(this).nextAll().toggle();
		return false;
	});	
	
	$('.btn2').hover(function(){
		$(this).fadeTo('fast',0.5);
	},function(){
		$(this).stop().css('opacity',1);
	});

});
