/**
 * @author Steve Clason
 * @project 
 * @description
 *
 * Revision history:
 *  dd mmm yy, create date
 */



$(document).ready(function() {
  $(".abstract > div").addClass("displayNone");
  $(".abstract > a").removeClass("displayNone");
  $("a.showHide").click(function(){
	$(this).siblings('div').toggleClass("displayNone"); 
	if ($(this).html() == "View Abstract") {
	  $(this).html("Hide Abstract");
	} else if ($(this).html() == "Hide Abstract") {
	  $(this).html("View Abstract");
	} else if ($(this).html() == "View Authors") {
	  $(this).html("Hide Authors");
	} else if ($(this).html() == "Hide Authors") {
		$(this).html("View Authors");
	}
	return false;  
  });

});


