jQuery(document).ready(function($) {
		var d=300;
		$('#navigation a').each(function(){
			$(this).stop().animate({
				'marginTop':'-60px'
			},d+=150);
		});
		
		$('#navigation > li').hover(
		function () {
			$('a',$(this)).stop().animate({
				'marginTop':'-2px'
			},200);
		},
		function () {
			$('a',$(this)).stop().animate({
				'marginTop':'-60px'
			},200);
		}
	); 
});