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

