(function($) {
	$(document).ready(function() {
		$("a.fbcomments").live('click',function(e) {
			e.preventDefault();
			var href = $(this).attr("href");
			var $c = $(this).parent();
			
			$("<fb:comments></fb:comments>").attr("href",href).attr("num_posts","5").attr("width","600").appendTo($c);
			
			$(this).remove();
			
			FB.XFBML.parse();
		});
	});
})(jQuery);
