$(document).ready(function() {
          $("#homeTop").find(".hometop_idea").hover(
                        function(){
                                    $(this).animate({"top": "-113px"}, 400, "easeOutBack");
                        },
                        function(){
                                    $(this).animate({"top": "-2px"}, 400, "easeOutBack");
                        });
          
           $("#homeTop").find(".hometop_friends").hover(
                        function(){
                                    $(this).animate({"top": "-104px"}, 400, "easeOutBack");
                        },
                        function(){
                                    $(this).animate({"top": "5px"}, 400, "easeOutBack");
                        });
           
           $("#homeTop").find(".hometop_raise").hover(
                        function(){
                                    $(this).animate({"top": "-94px"}, 400, "easeOutBack");
                        },
                        function(){
                                    $(this).animate({"top": "5px"}, 400, "easeOutBack");
                        });
});
