// JavaScript Document
$(document).ready(function()
{	$(".glow").fadeTo(250, .73);
	
		var glow = function(e) {
		$(e).mouseover(function()
			{$(this).fadeTo(250, 1);});
				
				$(e).mouseout(function()
				{$(this).fadeTo(250, .73);});
		
		};
	glow(".glow");




});
