$(document).ready(function(){

$(".footer-feat-head").hoverIntent(function(){
      $(".footer-feat-head").animate({ 
        height: '225px',
		backgroundColor: '#339900'
      }, 300 );
	   },
	   function()
	   {
		  $('.footer-feat-head').animate({
		  height: "49px", 
		  backgroundColor: '#999'
		  }, 300);
   });
   
   $(".footer-feat-head2").hoverIntent(function(){
      $(".footer-feat-head2").animate({ 
        height: '225px',
		backgroundColor: '#339900'
      }, 300 );
	   },
	   function()
	   {
		  $('.footer-feat-head2').animate({
		  height: "49px", 
		  backgroundColor: '#999'
		  }, 300);
   }); 

		
});