$(document).ready(function (){

	$("a.collapse").css("display","block");
	
	$("a.collapse").toggle(function(){
	
		$(this).next("ul").children("li").children("span").fadeOut("fast");
		$(this).text("Show article details");
	
	},function(){
	
		$(this).next("ul").children("li").children("span").show("fast");
		$(this).text("Hide article details");
	
	});
	

});
