var $j = jQuery.noConflict();
$j(function(){
    $j(".post").hover(function () {
      $j(this).children().children(".posttitle").stop();
      $j(this).children().children(".posttitle").animate({top:"101px"},750,"easeOutExpo");
    },
    function () {
      $j(this).children().children(".posttitle").stop();
      $j(this).children().children(".posttitle").animate({top:"201px"},750,"easeOutExpo");
    });
});