$(document).ready(function() {
	$('a', '#nav').hover(function() {
		if(!$(this).parent().hasClass('current')) {
			$(this).stop().animate({
				backgroundPosition: '(0 0px)'
			});
		}
	}, function() {
		if(!$(this).parent().hasClass('current')) {
			$(this).stop().animate({
				backgroundPosition: '(0 -5)'
			});
		}
	});
});

