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

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

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