$(document).ready(
	function( ){
		$(".hide").hide( );
		
		var hidden = true;
		var showTxt = "Show more details >>";
		var hideTxt = "Hide more details >>";
		
		$(".unhide").click(
			function( ){
				if(hidden){ $(".unhide").html(hideTxt); $(".hide").fadeIn(500, function( ){ hidden = false; }); }
				else{ $(".unhide").html(showTxt); $(".hide").fadeOut(500, function( ){ hidden = true; }); }
			}
		);
	}
);// JavaScript Document