$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	initNewsComments();
});

function initNewsComments()
{
	$(".news-comments-clickable").click(function(){
		$("#comments-container").load($(this).attr("rel"),{},function (tt){
				initNewsComments();
			});
		return false;
	});
}
