// jQuery mouseover



$(function(){
  $('.feature').showMouseover();
});


$.fn.showMouseover = function() {
	return this.each(function(){    
		var box = $(this);
		var text = $('div',this);
		
		text.hide();
		
		box.hover(function(){
			text.show();
		},function(){
			text.hide();
		});
	});
}

