// initalize ajax-enabled comments
$(document).ready(function(){
	// hide additional content
	$(".additionalContent").hide();
	// replace click events on expand links
	$(".showMore").click(function() {
		if($(this).attr("href")=='#more'){
			$("a[href='#less']").parent().children(".additionalContent").hide();
			$("a[href='#less']").html('show me more');
			$("a[href='#less']").attr("href","#more");
			$(this).parent().children(".additionalContent").show();
			$(this).html('show me less');
			$(this).attr("href","#less");
		}else{
			$(this).parent().children(".additionalContent").hide();
			$(this).html('show me more');
			$(this).attr("href","#more");
			var aName=$(this).parent().children(".topAnchor").attr("name");
			window.location='#'+aName;
		}
		return false;
	});
});
