jQuery(document).ready(function($) {

	$("#home-modules a").hover(function(){
		// Hover over
		$(this).find('span').stop().animate({top: '0px'}, 300);
	}, function(){
		// Hover out
		$(this).find('span').stop().animate({top: '150px'}, 300);
	});	
	
});
