            // Adding growing animation to icons
            $().ready(function(){
                $(".growingIcon").hover(function(){
                    $(this).css('width', '50px');
                    $(this).css('height', '60px');
                    $(this).stop().animate({
                        width: "55px",
                        height: "66px"
                      }, 200 );
                    }, function() {
                      $(this).stop().animate({
                        width: "50px",
                        height: "60px"
                      }, 200 );
                    }
                );
            });
