jQuery(document).ready(function($) {
	$('#twitter, #plus').hover(function(){
			$(this).stop(true,true);
			$(this).animate({color: "#ccdbe9"}, 'fast'); 
		}, function() {
			$(this).stop(true,true);
			$(this).animate({color: "#a9b9c8"}, 'fast');	
	});
	$('#supportpress, #foodpartners, #tumblr').hover(function(){
			$(this).bgFade('fadeIn'); 
		}, function() {
			$(this).bgFade('fadeOut'); 
	});
});
