$(document).ready(function(){
$('#navigation > li').hover(
	function(){
$(this).animate({fontSize:'16'},100).animate({fontSize:'12'},100);},
	function(){
$(this).animate({fontSize:'8'},100).animate({fontSize:'12'},100);}
);

$('#navigation > li > a').click(function(){
$(this).text('Loading...');
});
});