$(function() {
            $('.product_in_wrap').hover(
                function () {
                    var $this = $(this);
                    $('a',$this).stop(true,true).animate({
                            'bottom':'0px'
                        }, 300);
                    $('i',$this).stop(true,true).animate({
                            'top':'-10px'
                        }, 400);
                },
                function () {
                    var $this = $(this);
                    $('a',$this).stop(true,true).animate({
                            'bottom':'-180px'
                        }, 300);
                    $('i',$this).stop(true,true).animate({
                            'top':'50px'
                        }, 400);
                }
            );
            $('.product a img').hover(
                function () {
                    var $this = $(this).parents('a').siblings('.product_in_wrap');
                    $('a',$this).stop(true,true).animate({
                            'bottom':'-265px'
                        }, 400);
                    }
                );
			$('div.category_list ul li a').wrapInner('<span></span>');
			
        });

	   
