
	$(document).ready(function(){
			
		$("#categ li a").hover(
		function(){
			$(this).animate({ textIndent: "10px" }, 300 );

		},function(){
			$(this).animate({ textIndent: "0px" }, 300 );
		});

	});


