jQuery.noConflict();

jQuery(function(){  
  jQuery('.block11').showFeatureText120();    
})

jQuery.fn.showFeatureText120 = function() {
  return this.each(function(){    
    var box = jQuery(this);
    var text = jQuery('p',this);    

    text.css({ position: 'absolute', top: '44px' }).hide();

    box.hover(function(){
      text.slideDown("medium");
    },function(){
      text.slideUp("medium");
    });

  });
}

jQuery(function(){  
  jQuery('.block3').showFeatureText310();    
})

jQuery.fn.showFeatureText310 = function() {
  return this.each(function(){    
    var box = jQuery(this);
    var text = jQuery('p',this);    

    text.css({ position: 'absolute', top: '60px' }).hide();

    box.hover(function(){
      text.slideDown("medium");
    },function(){
      text.slideUp("medium");
    });

  });
}

