$(function() {
		$('a.category-products').hover(function() {
			$(this).prepend("<span class='square'>&raquo;</span>");
			$(this).stop().animate({paddingLeft:"5px"},250);
		}, function() {
			$('a.category-products span.square').remove();
			$('a.category-products').stop().animate({paddingLeft:"0"},250);
			
		});
	});