
$(function() {
                $('.link_main').hover(
                function () {
                    var $this = $(this);
                    $this.find('img').stop().animate({
                                                        'width':'100px',
                                                        'height':'100px',
                                                        'left':'30px',
														'bottom':'20px'},1000,'easeOutElastic');
					

                   
                },
                function () {
                    var $this = $(this);
                    $this.find('img').fadeOut(0);
                    $this.find('img').stop().animate({
                         'width':'0px',
                         'height':'0px',
                         'left':'85px'
                    },400,'easeOutBack');

                }
            );
            });

$(function() {
                $('.link_main').hover(
                function () {
                    var $this = $(this);
                    $this.find('.link_name')
					.stop(true)
                    .animate({'top':'100px'},800,'easeOutBounce')
                    .andSelf();
					

                   
                },
                function () {
                    var $this = $(this);
                    $this.find('.link_name');
                    $this.find('.link_name')
                         .stop(true)
                         .animate({'top':'0px'},900,'easeOutBounce');

                }
            );
            });

