$(document).ready( function() {

	$("div.news_arrow").click( function() { 
			if( $(this).prev().is(":hidden") ) { 
				$(this).prev().show("fast"); 
				$(this).html(" &laquo; "); 
				
			}
			else { 
				$(this).prev().hide("fast"); 
				$(this).html(" &raquo; "); 
			}
			
	});
	
	$("div.list").hide();
	$("#A-B").show();
	$("span[title='A-B']").css('text-decoration','underline');
	
	$("span.show_list").click(function() {
		$("div.list").hide();
		$("span.show_list").css('text-decoration','none');
		var id = $(this).attr('title');
		$("#"+id).show();
		$("span[title='"+id+"']").css('text-decoration','underline');
	});
	
	
});


