$(function(){
$('.feature').click(function(){
			  window.location=$(this).find('a').attr('href'); 
			  return false;
			  });

$('.feature').hover(function(){
		      $(this).addClass('feature_hover').fadeIn('slow');
			  }, 
			  function(){
		      $(this).removeClass('feature_hover');
});
});
