
// set the subline
function changeSubline (str) {
    document.getElementById('sublines').textContent = str;
}
window.onload = function () {
    if (berjon.editorialSubline) {
        changeSubline(berjon.editorialSubline);
    }
    else {
        changeSubline(berjon.sublines[Math.floor(Math.random() * berjon.sublines.length)].txt);
    }
};
