/* ADDING AN EVENT WHEN THE DOCUMENT IS LOADED -------------------------------------------*/

/*window.ondomready(function() { // adding an event onbeforeunload
	try {
		document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
});*/

var System = {};
	System.Editor = {};
		System.Editor.mode = "XHTMLBody";
		System.Editor.tabs = [
			["tabHome", "Оформление", ["grpEdit", "grpFont"]],
			["tabPara", "Параграфи", ["grpPara"]],
			["tabStyle", "Обекти и стилове", ["grpObjects", "grpTables", "grpStyles"]]
		];
		System.Editor.groups = [
			["grpEdit", "", ["Save", "XHTMLSource","Undo", "Redo", "Cut", "Copy", "Paste", "PasteWord", "RemoveFormat"]],
			["grpFont", "", ["FontName", "FontSize", "Bold", "Italic", "Underline","Strikethrough","Superscript","Subscript", "ForeColor", "BackColor","JustifyLeft", "JustifyCenter","JustifyRight","JustifyFull"]],
			["grpPara", "", ["Paragraph", "Indent", "Outdent", "LTR", "RTL", "Numbering","Bullets"]],
			["grpObjects", "", ["Image", "Characters", "Line", "Form","Hyperlink", "Bookmark"]],
			["grpTables", "", ["Table","Guidelines"]],
			["grpStyles", "", ["StyleAndFormatting", "Styles","Absolute"]]
		];
		
		
		
