$(document).ready(function(){
   $('#quote').hover(function(){
        $(this).css("margin-top", "10px");
   },
        $(this).css("margin-top", "0px");
 });

