function content() {
    $('#content-inner .view').before('<div class="content-top-image"></div>')
}

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"
        });
    }
}
$(document).ready(
    function(){
        content()
        gallery()
    })
