$(document).ready(function() {
	// #glow is the container div, using body tag caused a page flicker
	$('#glow').css('display','none');
	$('#glow').fadeIn('slow');
	$('a').click(function(e) {
		if ( $(this).attr('href').substring(0,1)=='/' ) {
			e.preventDefault();
			linkLocation = this.href;
			$('#glow').fadeOut('slow', function() {
				location.href = linkLocation;
			});
		}
	});
});


