		$(document).ready(function(){
		
			//show or hide .posttext class content inside a contentbox (default: hidden)
			$("#content .contentbox .shtoggle").hide();
			$("#content .contentbox:has(.shtoggle)").append("<br/><a href='' class='showhide' title='Show/Hide'>Show Details</a>");
			$("#content .contentbox .showhide").click(function(event){
				$(this).parent(".contentbox").children(".shtoggle").toggle();
				event.preventDefault();
				if($(this).text()=="Show Details")
				{
					$(this).text("Hide Details");
				}
				else
				{
					$(this).text("Show Details");	
				}
			});
		});

