function displayBlogComments(targ) {
	// hide the "add comment" buttons
	var newTarg=$(targ).parent().parent().parent().next(".comments");
	if(newTarg.css("display")=='none'){
		$(".comments").slideUp("slow");
		newTarg.slideDown("slow");
	}
}

// initalize ajax-enabled comments
$(document).ready(function(){
	// hide all comments 
	$(".comments").hide();
	// replace click events on "add comment" buttons
	$(".asset-meta a").click(function() {
		displayBlogComments(this);
		return false;
	});
});

