﻿	$(function(){
		$('#categories_block_top ul li').hover(
			function () {
			$(this).find('a span').stop(true, true).animate({bottom:-100}, 500, function() {});
				    },
			function () {
			$(this).find('a span').animate({bottom:0});
				    })		
		});

	$(function(){
		$('#categories_block_top ul li').hover(
			 function () {
			$(this).find('a i').stop(true, true).animate({bottom:85}, 400, function() {});
			 	    },
			function () {
			$(this).find('a i').animate({bottom:0});
			 })
	});

