
// Beautiful Slide Out Navigation: A CSS and jQuery Tutorial
// http://tympanus.net/codrops/2009/11/30/beautiful-slide-out-navigation-a-css-and-jquery-tutorial/

// Version 1
// 	$(function() {
// 		$('#navigation a').stop().animate({'marginLeft':'-85px'},1000);
// 
// 		$('#navigation > li').hover(
// 			function () {
// 				$('a',$(this)).stop().animate({'marginLeft':'-2px'},200);
// 			},
// 			function () {
// 				$('a',$(this)).stop().animate({'marginLeft':'-85px'},200);
// 			}
// 		);
// 	});
	
		$(function() {
		var d=300;
		$('#navigation a').each(function(){
			$(this).stop().animate({
				'marginTop':'-52px'
			},d+=150);
		});

		$('#navigation > li').hover(
		function () {
			$('a',$(this)).stop().animate({
				'marginTop':'-15px'
			},200);
		},
		function () {
			$('a',$(this)).stop().animate({
				'marginTop':'-52px'
			},200);
		}
	);
	});

