jQuery(function($) {
		
	$('#content ul li a').each(function(e) { 
		$(this).parent().animate({ 
        		opacity: 0.5,
        		}, 1500 );


		$(this).mouseover(function(e) {
			$(this).parent().animate({ 
        			opacity: 1,
        		}, 1000 );
		});
		
		$(this).mouseout(function(e) {
			$(this).parent().animate({ 
        			opacity: 0.5,
        		}, 1000 );
		});
	});
	

   
});
