background image animation

background image animation

hi all,

how can I animate background-image? I mean slow loading image ...

something like this ...

  1. $(this).animate({ "background-image","url('image.png')" }, 500);
but this doesnt work for me ... I also tried this ... but it just show after 1s ... with no animation 
  1. setTimeout(function(){
  2.         $("#tblmenu").css("background-image","url('image.png')");
  3.         },1000)