$(document).ready(function(){

// Effetti hover
$('#nav li a').mouseover(function() { $(this).stop().animate({ color: '#aaaaaa' }, 500); });
$('#nav li a').mouseleave(function() { $(this).stop().animate({ color: '#cecece' }, 500); });
$('.article h2 a').mouseover(function() { $(this).stop().animate({ color: '#696969' }, 500); });
$('.article h2 a').mouseleave(function() { $(this).stop().animate({ color: '#a9a9a9' }, 500); });
$('#sidebar ul li a').mouseover(function() { $(this).stop().animate({ color: '#aaaaaa' }, 500); });
$('#sidebar ul li a').mouseleave(function() { $(this).stop().animate({ color: '#cecece' }, 500); });

// Effetto hover su logo
$('#logo').hover(
	function() { $(this).stop().animate({"opacity": "0"}, 500); },
	function() { $(this).stop().animate({"opacity": "1"}, 500); }
);

// Effetto hovers su immagini
$('#content #articles .posts img').hover(
	function() { $(this).stop().animate({"opacity": "1"}, 500); },
	function() { $(this).stop().animate({"opacity": "0.4"}, 500); } 
);

// Effetto hovers su immagini flickr
$('#sidebar ul.flickr li img').hover(
	function() { $(this).stop().animate({"opacity": "1"}, 500); },
	function() { $(this).stop().animate({"opacity": "0.4"}, 500); } 
);




});
	

