CmdUtils.CreateCommand({
	name: "kissalt",
	takes: {"url to shorten": noun_arb_text},
	icon: "http://kissa.be/favicon.png",
	description: "Replaces the selected text with a <a href=\"http://www.kissa.be\">kissa url</a>",
	preview: "Replaces the selected Text with a kissa url.",
	execute: function( urlToShorten ) {
	//escaping urlToShorten will not create the right tinyurl
	var baseUrl = "http://kissa.be/create.php?url=";
	jQuery.get( baseUrl + urlToShorten.text, function( kissaUrl ) {
		kU = kissaUrl.match('<h2>(.*)</h2>')[1]
		CmdUtils.setSelection( kU );
		})
	}
});

