function init() {
    initSlider();
}

function initSlider() {
    if (document.getElementById('slider')) {
        $('#slider').nivoSlider({
            effect:'fade',
            controlNav:false,
            pauseTime: 4000,
            startSlide: 1,
            slideshowEnd: function() {
                $('#slider').data('nivoslider').stop();
                setTimeout(function() {
                    $('#slider').data('nivoslider').start()
                }, 8000);
            }
        });
    }
}

function byId(elementId) {
    return document.getElementById(elementId);
}

function showLogin() {
    byId('edit-login').style.display='inherit';
}

function hideLogin() {
    byId('edit-login').style.display='none';
}
