// JavaScript Document

 jQuery(document).ready(function(){
	$('#right_nav dl dt').click(function() {
		$(this).next().toggle("slow");
		return false;
	}).next().hide();
	
	$('#content .view_abstract').click(function() {
		$(this).next().toggle("slow");
		return false;
	}).next().hide();
	
});
