// JavaScript Document
$(document).ready(function()
{
	$(function() {  
		$('#navigation > li').hover(  
			function () {  
				$('a',$(this)).stop().animate({'marginLeft':'-2px'},200);  
			},  
			function () {  
				$('a',$(this)).stop().animate({'marginLeft':'-97px'},200);  
			}  
		);  
	}); 
}
);
