$(document).ready(function() {
	// Pimp varietylinks
	$('#varietyLinks a').hover(function() {
		$(this).stop().animate({backgroundColor: '#FFE046'}, 250)
	}, function() {
		$(this).stop().animate({backgroundColor: '#FFF'}, 250)
	});
});