jQuery().ready(function(){

	$(".colorPicker li a").hover(	
		function() {
			$(this).animate({ width: "32px"}, 350);
		},
		function() {
			$(this).animate({ width: "16px"}, 350);
		}		
	);

});
