
var $j = jQuery.noConflict();
$j(document).ready(function()
	{
	  // Toggle Single Bibtex entry
	  $j('a.toggle').click(function()
		{   


			if($j( $j(this).attr("href") ).is(":hidden")) {
$j( $j(this).attr("href") ).slideDown("slow");
}else{
$j( $j(this).attr("href") ).slideUp("slow");

}


		});

	});

