// Javascript Code by: Andy Langton. See latest version at: http://andylangton.co.uk/jquery-show-hide
$(document).ready(function() {
var showText=' [SEE ABSTRACT]';
var hideText=' [HIDE ABSTRACT]';
$('.toggle').prev().append(' <a href="#" class="toggleLink" style="color:#036">'+showText+'</a>');
$('.toggle').hide();
$('a.toggleLink').click(function() {
$(this).html ($(this).html()==hideText ? showText : hideText);
$(this).parent().next('.toggle').toggle('slow');
return false;
});
});
