$(document).ready(function() {
	$('.homeModule').hover(
		function () {
			$(this).stop().animate({ backgroundColor: "#a4e015"}, 800);
			$(this).children('span.frame').css({
				'background-position' : '0px 0px'
			});
		}, 
		function () {
			$(this).stop().animate({ backgroundColor: "#eeeeee"}, 800);
			$(this).children('span.frame').css({
				'background-position' : '0px 300px'
			});
		}
	);
});
