	$(document).ready(function() {
		$('a', '#n1').hover(function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(0 -41px)'
				});
			}
		}, function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(0 -0)'
				});
			}
		});
	});

	
	$(document).ready(function() {
		$('a', '#n2').hover(function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-88px -41px)'
				});
			}
		}, function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-88px -0)'
				});
			}
		});
	});

	$(document).ready(function() {
		$('a', '#n3').hover(function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-193px -41px)'
				});
			}
		}, function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-193px -0)'
				});
			}
		});
	});
	
	$(document).ready(function() {
		$('a', '#n4').hover(function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-294px -41px)'
				});
			}
		}, function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-294px -0)'
				});
			}
		});
	});
	
	$(document).ready(function() {
		$('a', '#n5').hover(function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-407px -41px)'
				});
			}
		}, function() {
			if(!$(this).parent().hasClass('current')) {
				$(this).stop().animate({
					backgroundPosition: '(-407px -0)'
				});
			}
		});
	});

