Object.extend(Event, {
	SelectionClear: function () {
		if (document.execCommand&&navigator.userAgent.indexOf("Firefox")==-1) document.execCommand("Unselect");
		else if (window.getSelection&&window.getSelection().removeAllRanges) window.getSelection&&window.getSelection().removeAllRanges();
	}
});