function toggleComment2() {
	$('#comment_link a').toggle(function() {
		$(this).addClass("show_comment_form");
		$('#toggleText').css({"display":"block"});
	},
function () {
		$(this).removeClass("show_comment_form");
		$('#toggleText').css({"display":"none"});
		}
	);
}
	
//function showDetail() {
//		$('div.show_detail_btn').click(function() {
//			if($(this).hasClass("show")) {
//				$(this).removeClass("show");
//				$(this).addClass("hide");
//				$('p.details').css({"display":"none"});
//				$('div#show_detail_btn').text('+ Show Details');
//			} else {
//				$(this).removeClass("hide");
//				$(this).addClass("show");
//				$('p.details').css({"display":"block"});
//				$('div.show_detail_btn').text('- Hide Details');
//			}
//	});
//}

function showDetail() {
	$('div.show_detail_btn').toggle(function() {
			$('p.details').show();
			$('div.show_detail_btn').text('- Hide Details');
		},
		function () {
				$('p.details').hide();
				$('div.show_detail_btn').text('+ Show Details');
				}
			);
		}
		
	function showDetail2() {
		$('div.show_detail_btn2').toggle(function() {
			$('p.details').show();
			$('div.show_detail_btn2').text('- Hide Details');
		},
		function () {
			$('p.details').hide();
			$('div.show_detail_btn2').text('+ Show Details');
			}
		);
	}
