﻿// Funkce spouštěné při načítání stránky

fB.dimensionsInit();
	
// Fce pro vytvoreni bezpecneho odkazu
	inCMS.initLinks = function() {
		var mailList = $('span.link');
		mailList.each(function(){
			var mail = $(this).html().replace('(zavinac)','@');
			mail = mail.replace(/\(tecka\)/g,'.');
			$(this).html('<a href="mailto:'+mail+'" title="'+mail+'">' + mail +'</a>');
		});
	}
	inCMS.initLinks();

	// Kulaté rohy u obrázků z wysiwygu
	inCMS.setCorners = function() {
		var images = $('.htmlEditorContent img').not('.squared');
		images.each(function() {
			var w = $(this).width();
			var h = $(this).height();
			var mT = $(this).css('margin-top');
			var mR = $(this).css('margin-right');
			var mB = $(this).css('margin-bottom');
			var mL = $(this).css('margin-left');
			var f = $(this).css('float');
			$(this).wrap('<span class="rC-parent"></span>')
			.after('<span class="rC-7 rC-7W rC-7-1"></span><span class="rC-7 rC-7W rC-7-2"></span><span class="rC-7 rC-7W rC-7-3"></span><span class="rC-7 rC-7W rC-7-4"></span>')
			.css({ 'margin': '0', 'float': 'none' })
			.parent().width(w).height(h).css({ 'float': f, 'margin-top': mT, 'margin-right': mR, 'margin-bottom': mB, 'margin-left': mL });
		});
	}
	inCMS.setCorners();
	