function olexec() {

    // Submenu collapsing
    var lis = $('#ct_menu > ul > li:has(ul)').add('#ct_menu > ul > li > ul > li:has(ul)');
    lis.find('> ul').each(function() {
        var li = $(this).parent();
        li.addClass('children');
        if(!(li.is('.path') || li.is('.active'))) {
            $(this).hide();
            li.addClass('collapsed');
        }
        if(li.is('.active')) {
            li.addClass('actchild');
        }
    });


    // Gallery image centering
    /*
	$('.gallery-images a img, .category-gallery-galleries a img').each(function() {
		$(this).css('margin-top', parseInt((230 - $(this).height())/2) + 'px');
		$(this).css('margin-left', parseInt((188 - $(this).width())/2) + 'px');
	});

	if ($.fn.lightBox)
		$('a.lightbox').lightBox();
*/
    // Article datepicker
    if ($.ngsDatepickerCs) {
        $.ngsDatepickerCs('article_published_at');
    }

    $('a.confirm').click(function() {
        return confirm('Opravdu provést operaci?');
    });
	
    jQuery('.header a').cycle({
        fx:'fade',
        speed:2000,
        timeout:  15000
    });
        

}

