$(function () {

            $.texyla.setDefaults({
                filesWindowDimensions: [500, 370],
                linkWindowDimensions: [400, 230],
                tableWindowDimensions: [600, 300],
                imgWindowDimensions: [500, 270],
                filesAllowMkDir: false,
                filesAllowDelete: false,
                filesAllowDeleteDir: false,
                filesAllowRename: false,
                filesAllowRenameDir: false
            });
            $.texyla.setErrorHandler(function (message) {alert("Chyba: " + message);});
			$(".texylaAdmin").texyla({
				toolbar: [
					'h3', 'h4',
					null,
					'bold', 'italic',
					null,
					'center', ['left', 'right', 'justify'],
					null,
					'ul', 'ol',
					null,
					'link', 'img', 'files', 
                    null,
                    'table',
					null,					
					'html', 'comment',
					null,					
					{ type: "label", text: "Ostatní"}, ['sup', 'sub', 'del', 'acronym', 'hr', 'notexy', 'web']
				],				
				texyCfg: "admin"
            });

            $(".texylaForum").texyla({
				toolbar: [
					'bold', 'italic',
					null,					
					'ul', 'ol',
					null,
					'link',
                    null,
                    'sup', 'sub', 'del', 'acronym'
				],				
				texyCfg: "forum",
                buttonType: "button",
                width: 500
			});
});

