// JavaScript Document
$(document).ready(function() {
	$('#menu li a').removeClass("nonjs");
	
	$('#menu li a').hover(function() { //mouse in
		$(this).animate({ marginRight: '-10px' }, 200);
	}, function() { //mouse out
		$(this).animate({ marginRight: '0px' }, 100);
	});
});

