En la web que has puesto, está hecho así, con este código tal cual:
//javascript
jQuery(document).ready(function($){
$(".hover").hover(function(){
this.src = this.src.replace("_off","_on");
}, function(){
this.src = this.src.replace("_on","_off");
});
$('.slidedown').hover(function(){
$("img", this).stop().animate({top:'318px'},{queue:false,duration:500});
//$("img", this).stop().animate({ "opacity": 0 });
}, function() {
$("img", this).stop().animate({top:'0px'},{queue:false,duration:500});
//$("img", this).stop().animate({ "opacity": 1 }, 700);
});
$('.slidedown_work').hover(function(){
$("img", this).stop().animate({top:'250px'},{queue:false,duration:500});
//$("img", this).stop().animate({ "opacity": 0 });
}, function() {
$("img", this).stop().animate({top:'0px'},{queue:false,duration:500});
//$("img", this).stop().animate({ "opacity": 1 }, 700);
});
});
Si te fijas tiene 2 etiquetas <script> en la cabecera, una es del jquery.js, y la otra te lleva a un archivo que contiene esto.