
    /* NEWS CLICK */
    function newsClick() {}
    newsClick.prototype.init = function(){
        $(".news_list_article").bind('mouseover',newsClick.prototype.on).bind('mouseout',newsClick.prototype.off).bind('click',newsClick.prototype.go);
    }
    newsClick.prototype.on = function(event){
        if( $(event.target).hasClass("news_list_article") ){
            $(event.target).addClass("news_list_article_hover");
        } else {
            $(event.target).parents().each(function(){
                if( $(this).hasClass("news_list_article") ) $(this).addClass("news_list_article_hover");
            });
        }
    }    
    newsClick.prototype.off = function(event){
        if( $(event.target).hasClass("news_list_article") ){
            $(event.target).removeClass("news_list_article_hover");
        } else {
            $(event.target).parents().each(function(){
                if( $(this).hasClass("news_list_article") ) $(this).removeClass("news_list_article_hover");
            });
        }
    }
    newsClick.prototype.go = function(event){
        $(event.target).parents().each(function(){
            if( $(this).hasClass("news_list_article") ) {
                var newLocation = $($($(this).children()[1]).children()[3]).attr("href");
                document.location = newLocation;
            }
        });
    }
    $(document).ready(newsClick.prototype.init);

