function big_entry(number_id){
	var number = number_id;
	$('#entry' + number).animate({ marginLeft: -5, height:"36px", fontSize: "24px" });
};
function small_entry(number_id){
	var number = number_id;
	$('#entry' + number).animate({ marginLeft: 0, height:"30px", fontSize: "20px" });
};
function backbot(){
	document.getElementById("backbot").style.display = "none";
	$("#backbot").fadeIn(2000); 
};
function showPage(){
	$('#title').animate({ top: "0px" });
	setTimeout("$('#links').animate({ left: '-1px' })", 300);
	$("#entry").fadeIn(2000); 
}