$(document).ready(function() {

	// Homepage Hovers
	$('div.home a.feature-image').css({'padding-top' : '0px'});
	$('div.home a.feature-image h4').animate({'opacity' : '.6'}, 0);
			
	$('div.home a.feature-image').hover(function() {
		$('div.home a.feature-image').css({'padding-top' : '0px'});
		$(this).children('h4').animate({opacity: '1'}, 150);
	}, function() {
		$('div.home a.feature-image').css({'padding-top' : '0px'});
		$(this).children('h4').animate({opacity: '.6'}, 150);
	});
});
