$(document).ready(function() {

	// ========================== TOOLTIP ==========================
	jQuery('label sup').tooltip({

		track: true,
		showURL: false, 
		showBody: " - "

	});
	
	// ========================== VALIDÁTOR ==========================
	if($("#ulozit").attr('name') != null) {

		$("#article").validate({meta: "validate"});
	}
	
	// ========================== TEXYLA ==========================

	$("#body").texyla({
		toolbar: [
			'h2', 'h3', 'h4',
			null,
			'bold', 'italic',
			null,
			'ul', 
			'ol',
			null,
			'link', 
			'img', 
			'table',
			null,
			'sup', 
			'sub', 
			'del',
		],
		tabs: false,
		language: 'cs',
		texyCfg: 'admin',
		bottomLeftToolbar: ['edit', 'preview'],
		bottomRightPreviewToolbar: []
	});
	
});
