Jquery Letter spacing

Jquery Letter spacing

i want to animate text with scroll down.

i apply this code.this is working. 
if scrolled = -16 
my text color id Red , but again scroll top -5 , still color is red,

Please help me. 
Thank you.

  1. $(function(){
  2.  $(window).scroll(function() {
  3.         var scrolled=-($(window).scrollTop())/50;
  4.         
  5.         $('#scrolled').text('scrolled: '+scrolled+'px'); 
  6.        if(scrolled>-10){ $('#cName').css({'letter-spacing':12+scrolled+'px'}); }
  7.        else{$('#cName').css({'color':'red'});}
  8.    });
  9.     
  10. });