 $(function () {
    
           $('.teams li').hover(function(){
        	$('.plus', this).fadeIn('fast'); 
        	
        	   
           }, function(){
        	   var element=$('.plus', this);
           	element.fadeOut('fast'); 

           });
           var commentid=1;
           $('.comment-number').each(function(){
        	  $(this).text(commentid);
        	  commentid++;
        	   
           });
           
          $('.highlight a').each(function(){
        	  $(this).append('<span class="newshover">&nbsp;</span>');
          }); 
          $('.highlight a').hover(function(){
          	$('.newshover', this).fadeTo(500, 0.6); 
          	
          	   
             }, function(){
          	   var element=$('.newshover', this);
             	element.fadeTo(500, 0); 

             });
                 
           
           
    });

 
