$(document).ready(function(){	
			$('h2 a, span a').hover(function() {
				
				$(this).stop().animate({color: "#fff"}, 2).animate({color: "#8797be"}, 220);
			}, function() {
				$(this).stop().animate({color: "#fff"}, 220);
			});
			
			$('#sidebar li a').hover(function() {
				$(this).stop().animate({color: "#009999"}, 2).animate({color: "#ccc"}, 300);
			}, function() {
				$(this).stop().animate({color: "#009999"}, 300);
			});
			
			/*$('#social-networks li a').hover(function(){
				$(this).stop().animate({opacity: 0.25}, 300);
			}, function(){
				$(this).stop().animate({opacity: 1}, 300);
			});*/
			
		});	//
