 //For NEWS WIDGET THUMBS
jQuery(document).ready(function(){

jQuery('.resultItem.slideright').hover(function(){  
jQuery(".more_news_item", this).stop().animate({left:'210px'},{queue:false,duration:200});  
 }, function() {  
 jQuery(".more_news_item-hover", this).stop().animate({left:'0px'},{queue:false,duration:100});  
   }); 
  jQuery('.resultItem.slideright').mouseleave(function(){  
jQuery(".more_news_item", this).stop().animate({left:'0px'},{queue:false,duration:200});  
 }, function() {  
 jQuery(".more_news_item-hover", this).stop().animate({left:'210px'},{queue:false,duration:100});  
   });  

});