$(function () {
    $("ul#ticker01").jcarousel({
        wrap: 'circular',
        scroll: 1,
        auto: 5
    });
    $('.show_hide, .infoboxje').mouseenter(function () {
        $(".infoboxje").show();
    }).mouseleave(function () {
        $(".infoboxje").hide();
    });
    if ($("ul#ticker02 li").length > 0) $("ul#ticker02").webTicker();
    $('#gallery a').lightBox();
});

function makeTwoChars(inp) {
    return String(inp).length < 2 ? "0" + inp : inp;
}


