 $(function() {
	$("#main").hide();
	$("#main").fadeIn('slow');
	$("a:not(.selected)").hover(
		function () {
        	$(this).stop().animate({ backgroundColor: '#777', color: '#fff'}, 400); 
    	}, 
		function() {
        	$(this).stop().animate({ backgroundColor: '#000', color: '#999'}, 400);
    	});
	$("#more").effect('slide', {direction: 'right'});
});	

