I have fade effect structure. With the following:
  <img src='firstStar.jpg' alt='star image' id='firstStar' />
    var loopImages = function(){
         $('#firstStar').fadeIn(1500, function(){
                   $('#firstStar').fadeOut(1500, loopImages);           
         });
    }
    loopImages();
It's working. But i want, this effect get left to right. Is it possible?
 
     
     
    