$(document).ready(function() {
	
	$("#main_content_holder").corners();
	
	$("#bio").corners();

	
	$("#navbar ul li").hover(
		function () {
			//$(this).addClass("hover");
			$(this).animate({ backgroundColor: "#666" }, 'slow');
		},
		function () {
			//$(this).removeClass("hover");
			$(this).animate({ backgroundColor: "#222" }, 'slow');			
		}
	);
});
