$(document).ready(function() {
	$('.glow-yellow').addGlow({ textColor: '#FF9', haloColor: '#FF9', radius: 20 });
	$('.glow-orange').addGlow({ textColor: '#F60', haloColor: '#F60', radius: 20 });
	$('*').bind('glow:started', console.info);
	$('*').bind('glow:canceled', console.info);
});