$(document).ready(function(){
    
 $('.start-box .ff').mouseenter(function(){
    
         //$('.plashka').animate({top:217}, 300, function(){  }); 
             
         var title=$(this).find('.plashka span');   
         $(this).children('.plashka').animate({top:0}, 200,'easeInOutExpo', function(){  });       
         
         $(title).css('line-height','22px');
         $(title).css('padding-right','0px');
         $(title).css('padding-left','17px');
         $(title).css('padding-top','17px');
         $(title).css('padding-bottom','0px');
         $(title).css('text-transform','none');

         $(title).animate({fontSize:'30px'}, 200,'easeInOutExpo', function(){  });    
              
         
         //$(this).children('.plashka').animate({fontSize:font_size_close,color:color_close}, 200,'easeOutExpo',function(){
    
     
 }).mouseleave(function(){
     
     
         var title=$(this).find('.plashka span');   
         $(this).children('.plashka').animate({top:217}, 100,'easeInOutExpo', function(){  });       
         
         
         $(title).css('line-height','20px');
         $(title).css('padding-right','0px');
         $(title).css('padding-left','7px');
         $(title).css('padding-top','0px');
         $(title).css('padding-bottom','0px');
         $(title).css('text-transform','uppercase');

         $(title).animate({fontSize:'9px'}, 100,'easeInOutExpo', function(){  });  
     
     
 });   

    
});
