$(document).ready(function() {

    if ($.browser.msie) {
        if ($.browser.version < 7) {
            DD_belatedPNG.fix('.png');
        }
    }

    $('.languagechoice').mouseover(function() {
        //$(this).children('img').attr('src', $(this).children('img').attr('src').replace('.png', '-hover.png'));
        $(this).children('img').attr('src', $(this).children('img').attr('src').replace('.png', '-hover.png'));

        $('.text').attr('class', 'text invisible');
        switch ($(this).attr('id')) {
            case 'nl':
                $('#tekst_NL').attr('class', 'text');
                break;
            case 'fr':
                $('#tekst_FR').attr('class', 'text');
                break;
            case 'en':
                $('#tekst_EN').attr('class', 'text');
                break;
            case 'it':
                $('#tekst_IT').attr('class', 'text');
                break;
        }
    }).mouseout(function(){
        $(this).children('img').attr('src', $(this).children('img').attr('src').replace('-hover.png', '.png'));
    });
});
