// JavaScript Document


<!--Glow-->
    $(document).ready(function() {
      $('.white').addGlow({ textColor: 'white', radius: 100 });
      $('.blue').addGlow({ textColor: '#00f', radius: 100 });
      $('.green').addGlow({ textColor: '#0f0', radius: 100 });
      $('.red').addGlow({ textColor: '#f00', radius: 100 });
      $('*').bind('glow:started', console.info);
      $('*').bind('glow:canceled', console.info);
    });
<!--End Glow-->



