$(function(){  
  $('.feature_box').showFeatureText();    
})

$.fn.showFeatureText = function() {
  return this.each(function(){    
    var box = $(this);
    var text = $('div',this);    

    text.css({ position: 'absolute', top: '0px', color: '#ffffff', height: '101px', background: '#007aa1' }).hide();


    $(this).hover(function(){
      text.slideDown("fast");
    },function(){
      text.slideUp("fast");
    });
	
	

  });
  
  
} 
