//Javascipt for Quote

 jQuery(document).ready(function() {
 
   jQuery(".openQuote").click(function () {
      jQuery(".hidden-quote").slideToggle("def", function () {
	      jQuery("html").animate({ scrollTop: jQuery(document).height() }, "slow");
	      });      
     return false;  
  });
  
  
 });

