// JavaScript Document
	jQuery(document).ready(function() {
			jQuery(function() {
				jQuery("#klubr").suggest("a.klub.php",{minChars:3});
			});
	})

function save_klub() {
	var klub = $("#klubr").val();
	if(klub == "") {
		return false;
	}
	$("#k-work").html('<img src=\"http://www.protenis.cz/img/ex/load.gif\">');
	$.get("http://www.protenis.cz/nastaveni/a.save-klub.php", { klub_name: klub }, function(data){
		$("#klubr").val('');
		update_user_clubs();
		$("#club-message").html(data);
		$("#k-work").html('');
		$("#club-message").toggle();
	});
	return false;
}

function update_user_clubs() {
	$.get("http://www.protenis.cz/nastaveni/a.list-klub.php", { }, function(data){
		$("#user-clubs").html(data);
	});
	return false;


}

function delete_club(kid) {
	$("#k-work").html('<img src=\"http://www.protenis.cz/img/ex/load.gif\">');
	$.get("http://www.protenis.cz/nastaveni/a.delete-klub.php", { kid: kid}, function(data){
		update_user_clubs();
		$("#k-work").html('');
		$("#club-message").html(data).toggle();
	});
	return false;


}
