(function(jq){
    jq.fn.news = function() {
        var list = this;
        return this.each(function(){
            var link = jq(this).find('a.newsentry_detail').attr('href');
            jq(this)
            .css({ 'cursor':'pointer' })
            .hover(
                function() { jq(this).css({ 'background-color':'#bac1cd' }); },
                function() { jq(this).css({ 'background-color':'transparent' }); }
            )
            .click(function(){
                document.location.href = link;
            });
        });
    }
})(jQuery);
