$(document).ready(function() {
	setTimeout('move_up()', 1);
	
	var itcounter = 0;
	$("div#header ul:nth-child(3) li").each(function() {
		if(itcounter > 4) {
			$(this).css({display:"none"});
		}
		itcounter++;
	});
	
	$('div#archive ul:first-child').css({display:'none'});
	$('div.credits br').css({display:'block'});
	$('div.credits br:first-child').css({display: 'none'});
	
	$('ul#twitter_update_list li').hover(function() {
		$(this).css({backgroundColor:'#fff', color: '#333'});
	},
		function() {
			$(this).css({backgroundColor: 'transparent', color: '#d4d5d6'});
	});
});