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

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