“You can’t be hard on yourself for these were the cards that you were given so you have to understand that these, like… that’s not who you are. You know you’re trying to be the best you can be but that’s all you can do. If you don’t give it all you got, you’re only cheating yourself. Give it all you got, but if it ends up happening, it ends up happening.”

“That’s what it’s….that’s what’s happening with me. It’s like… God I’m giving it all I got, sometimes I’m weak and I’m gonna do it, and it’s like I’m not giving myself grace, I’m just like understanding, that’s just how it is.”

$(function() { $("#topDivA").click(function(){ var target = $("html"); $('html, body').animate({ scrollTop: target.offset().top }, 1000); }); var topDiv = $("#topDiv"); var topDivTop = "1000"; var view = $( window ); view.bind("scroll resize", function(){ var viewTop = view.scrollTop(); if (viewTop > topDivTop){ topDiv.fadeIn(300); } else if (viewTop <= topDivTop){ topDiv.fadeOut(200); } }); });