$(document).ready(function(){
    if ($.browser.msie && $.browser.version == 6) {
        $('#wrapper1').css('display', 'none');
        $('#vet1').css('display', 'block');
    }
    $('.mini_gallery').mini_gallery();
    $('.slider').lslider({
        'timeout': 10000
    });
    $('.top-slider').lslider({
        'timeout': 5000
    });
    $('#header-menu3').menu({'effect':'fade', 'speed':300});
    $('#top-languages li').each(function(){
        if(!$(this).find('a').hasClass($.symbiosis.language)){
            $(this).find('a').css('opacity', '0.5');
            $(this)
            .hover(function(){
                $(this).find('a').animate({
                    'opacity': '1'
                });
                $(this).parent().find('.'+$.symbiosis.language).animate({
                    'opacity': '0.5'
                });
                
            },function(){
                $(this).find('a').animate({
                    'opacity': '0.5'
                });
            });
        }
        else{
            $(this)
            .hover(function(){
                $(this).find('a').animate({
                    'opacity': '1'
                });
            });
        }
    });
    $('#top-languages ul').hover(function(){},
    function(){
        $(this).find('.'+$.symbiosis.language).animate({
            'opacity': '1'
        });
    });
    if($.browser.msie){
        $('#header-menu3 ul li ul').each(function(){
            a=$(this).parent().find('a');
            $(this).css({
                'margin-left': -a.width()-20
            });
        });
    }
});
