$('document').ready(function() {
	$('.menu > ul > li:not(.active)')
		.mouseover(function(){
			$(this).addClass('hover');
			$(this).find('> a').stop().animate({
				backgroundPosition: "(0 1px)"
			}, 100)
		})
		.mouseleave(function(){
			$(this).find('> a').stop().animate({
				backgroundPosition: "(0 7px)"
			}, 100, function(){
			})
			$(this).removeClass('hover');
		})
});
