$(document).ready(function() {
  $('.featured_bottom_post:last').css('margin-right', '0px');
  $('.calendario_post:last').css('border-bottom', 'none');
  $('#post_right').css('minHeight', $('#post_left').outerHeight(true) );

});

jQuery(document).ready(function() {  
  $(".featured_bottom_post").hover(function(){
        $(".featured_bottom_post_date", this).hide(160);
		$(".featured_bottom_post_caption", this).animate({top:'0'},{queue:false,duration:160});
		
    }, function() {
        $(".featured_bottom_post_caption", this).animate({top:'220px'},{queue:false,duration:300});
		$(".featured_bottom_post_date", this).show(160); })
  
  $('.featured_bottom_post_caption').jScrollPane();

});


