$(document).ready
(
	function()
	{
        $("#content a[rel=external]").click(function()
        {
            $(this).attr('target', '_blank');
        });
    
		$("#bodyWrapper #contentWrapper #header #menu ul li").hover
		(
			function()
			{
				$(this).stop().animate
				(
					{marginTop:"3px",fontSize:"20px"},
					300
				);
			},
	
			function()
			{
				$(this).stop().animate
				(	
					{marginTop:"-3px",fontSize:"8px"}, 
					100, 
					function()
					{
						$(this).animate
						(
							{marginTop:"2px",fontSize:"14px"}, 
							75,
							function()
							{
								$(this).animate
								(
									{marginTop:"-2px",fontSize:"10px"}, 
									75,
									function()
									{
										$(this).animate
										(
											{marginTop:"2px",fontSize:"14px"}, 
											50,
											function()
											{
												$(this).animate
												(
													{marginTop:"0",fontSize:"16px"},
													25
												);	
											}
										)
									}
								) 					
							}
						)
					}
				);
			}
		);
	}
);
