$(document).ready( function() {
	$("#draw").click( function() {
		$.ajax({
			type: "POST",
			url: "drawtable.php",
			cache: false,
			data: "userskills=" + $("#skillpaste").val() + "&mode=" + $(".modeselect:checked").val(),
			success: function(r) {
				$("#result").html(r);
				doStuff();
			}
		});
		return false;
	});
	$(".modeselect:first").attr("checked",true);
});

function doStuff() {
	$("#result table tr:last").replaceWith('');
	$("#result td").tooltip({
		delay: 300,
		showURL: false,
		track: true,
		bodyHandler: function() {
			return $(this).find("span").text();
		}
	});
}

