$(document).ready(function(){
	$('#bottom label').inFieldLabels();
});

$(document).ready(function(){
	$('#bottom ul li').hover(function(){
		$(this).stop().animate({
			backgroundPosition: '5px 6px'
		});
	}, function(){
		$(this).stop().animate({
			backgroundPosition: '0px 6px'
		});
	});
});