jQueryを使ってマウスオーバーアクションなど
画像をスライド演出させるライブラリはいくつか紹介してきましたが、
そんなスライド効果をライブラリの様な大きなものを使うのではなく
単純な:animateを使って実現するためのサンプルスクリプト一覧を紹介。

本家サイト(http://www.1stwebdesigner.com/tutorials/sliding-boxes-with-jquery/)は
いつの間にか閉鎖(?)してしまい、閲覧不可になっていたので、
前に落としておいたDEMOファイルからご紹介。

まずスライドアニメーションサンプル。
画像にマウスオーバーしてください。
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓

使用しているスクリプトは以下のような感じに。

◆SCRIPT

$(document).ready(function(){
 $('#top-left').hover(function(){
  $(this).children('.front').stop().animate({'top' : '150px', 'left' : '300px'}, 500);
 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
 $('#top-center').hover(function(){
  $(this).children('.front').stop().animate({'top' : '150px'}, 500);
 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
 $('#bottom-center').hover(function(){
  $(this).children('.front').stop().animate({'top' : '-150px'}, 500);
 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
 $('#left').hover(function(){
  $(this).children('.front').stop().animate({'left' : '300px'}, 500);
 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
 $('#right').hover(function(){
  $(this).children('.front').stop().animate({'left' : '-300px'}, 500);
 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
 $('#top-right').hover(function(){
  $(this).children('.front').stop().animate({'top' : '150px','left' : '-300px'}, 500);
 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 500);});
});

様々なパターンのスライドパターンのスクリプトが簡単に実現できます。
上記スクリプトは全てのアクションがひとまとまりになっていますが、
実際使用する際には必要なパターンを抜き出す感じで。
ライブラリと違って単純な:animeteを使っての画像スライド方法なのでライセンスもなし。

サンプルはマウスオーバーでの演出ですが、
クリックアクションにしたり、ページロードアクションにしたりすることで
また別の使い道が生まれそうです。

ご参考までに。。。