$(document).ready(function() {
	$("#toolbox").dialog();
	$("#tabs").tabs();
	$("#boldbtn").button();
	$("#italicbtn").button();

	$("#boldbtn").click(function() {
		var cmd = $(this).title;
		var returnValue = document.execCommand(cmd,false,null);
		var scode = $("#theeditable").html();
		$("#srcode").text(scode);
	});
	$("#italicbtn").click(function() {
		var returnValue = document.execCommand('italic',false,null);
		var scode = $("#theeditable").html();
		$("#srcode").text(scode);
	});

	//$(document).keypress(function(event) {
	// if (event.which == '126') { // ~
	//		$("#toolbox").dialog('open');
	//	}
	//});

});

