
var hoverFadeEffectFadeIn = function() {
	$(this).stop(true, true).animate({ backgroundColor: '#ddd' }, 250);
};

var hoverFadeEffectFadeOut = function() {
	$(this).animate({ backgroundColor: '#fff' }, 500);
};

$(document).ready(function() {
	$(".hover_fade_effect").hover(hoverFadeEffectFadeIn, hoverFadeEffectFadeOut);
});

