$("document").ready(function(){       
	
	$("#references .ref-show").click(function(){

		$(this).parent().parent().children(".details").css("display","block");
		$(this).css("display","none");
		$(this).next(".ref-hide").css("display","block");
	});
	
	$("#references .ref-hide").click(function(){

		$(this).parent().parent().children(".details").css("display","none");
		$(this).css("display","none");
		$(this).prev(".ref-show").css("display","block");
	});
	   
});

