$(document).ready(function(){
	$('#items a').css({'opacity':0});
	$('#items a').hover(function(){
		$(this).animate({'opacity':1},300);
	},function(){
		$(this).animate({'opacity':0},300);
	});
});
