document.write("<script type='text/javascript' src='/js/jquery.plugins.js'></scr"+"ipt>");
function ticker()
{
    $('.active_t').hide('slow');
    if($('li.active_t').hasClass('last'))
    {
        $('li.active_t').removeClass('active_t');
        $('#news_ticker li:first').show('slow').addClass('active_t');
    }
    else
    {
        $('li.active_t').removeClass('active_t').next('li').addClass('active_t');
        $('li.active_t').show('slow');
    }
    setTimeout(ticker,5000);
}

function zoekvak()
{
    var div = document.getElementById('zoekinput');
	
    if(div.value == 'Search Oxycom...')
    {
        div.value = '';	
    }
    else
    {
        if(div.value == '')
        {
            div.value = 'Search Oxycom...';	
        }
    }
}

$(document).ready(function(){
    $('.active_t').css('display', 'block');
    $('#content a:has(img)').lightBox();
    $("#header").css({cursor: 'pointer'});
    $("#header").click(function(){
        window.location = "/";
    });
});

setTimeout(ticker,5000);

