$(function() {
	$('#top_nav li a:last').css({'border' : 'none'});
	
	var k = 1;
	for (var i = 0; i <= 12; i++){
		$('#head_nav li:eq(' + i + ')').addClass('n' + k);
		k++;
	};
	
	$('#head_nav li.active').css({'background' : 'none'});
	
	$('#head_nav li a').hover(function () {
		var w = $(this).parent('li').width() - $(this).width() - 8;
		$(this).parent('li').stop().animate({
			backgroundPosition: w + 'px 50%'
		}, 300);
	}, function() {
		$(this).parent('li').stop().animate({
			backgroundPosition: '5px 50%'
		});
	});
});
