$(document).ready(function() {
var glow = $('.light');
	glow.mouseover(function(id){
		$(this).css({'background':'#011930'});
	});
	glow.mouseout(function(id){
		$(this).css({'background':'#888888'});
	});
	
	var glow2 = $('.normal');
	glow2.mouseover(function(id){
		$(this).css({'background':'#29a0f4'});
	});
	glow2.mouseout(function(id){
		$(this).css({'background':'none'});
	});
	
});
