function content() {
    $('#content-inner .view').before('<div class="content-top-image"></div>')
}
function menu() {
    var crumbs = $('#crumbs li')
    jQuery.each(crumbs,function(index,value){
        if(index < crumbs.length-1) {
            $(this).after('<li>/</li>')
        }
    })
}
function gallery() {
    var gallery = $('#gallery a')
    var gallery_bottom = $('#gallery-bottom a')
    var settings = {
            fixedNavigation:true,
            imageLoading: '/img/loading.gif',
            imageBtnClose: '/img/close.gif',
            imageBtnPrev: '/img/prev.gif',
            imageBtnNext: '/img/next.gif',
            txtImage: "Obrázok",
            txtOf: "z"
        }

        gallery.lightBox(settings);
        gallery_bottom.lightBox(settings);
}
$(document).ready(
    function(){
        gallery()
        content()
        $('#tabs').tabs();
        $('#tabs2').tabs();
        menu()
    })
