function content() {
    $('#wrapper').before('<div class="top-line"></div>')
    //    $('#content-inner').before('<div class="homepage-image"></div>')
    $('#box-do-pozornosti').after('<div id="do-pozornosti-shadow"></div>')
}

function tabs() {
    $tabs = $('#tabs').tabs();
}
function gallery() {
    var gallery = $('#gallery a')
    if(gallery.length > 0) {
        gallery.lightBox({
            fixedNavigation:true,
            imageLoading: '/img/loading.gif',
            imageBtnClose: '/img/close.gif',
            imageBtnPrev: '/img/prev.gif',
            imageBtnNext: '/img/next.gif',
            txtImage: "Obrázok",
            txtOf: "z"
        });
    }
}
function crumbs() {
    var crumbs = $('#crumbs li')
    jQuery.each(crumbs,function(index,value){
        if(index < crumbs.length-1) {
            $(this).after('<li>/</li>')
        }
    })
}
$(document).ready(
    function(){
//        content()
        gallery()
        crumbs()
//        tabs()
    })
