        $(function(){

            $('.news_link').hover(function(){
                $('.news_link').removeClass('active');
                $(this).addClass('active');
                $('#announceImage').css('background', $(this).next().find('.image').css('background'));
                $('#announceText').html($(this).next().find('.text').html());
            }, function(){});

        });
