		$(function() {
		// set opacity to .2 on page load
		$(".glow1, .glow2, .glow3").css("opacity","0.2");
		// on mouse over
		$(".glow1, .glow2, .glow3").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 0.6
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to back to .2
			$(this).stop().animate({
				opacity: 0.2
			}, "slow");
		});
	});
	
			$(function() {

	// set opacity to .2 on page load
		$(".glow4, .glow5, .glow6, .glow7, .glow8, .glow9").css("opacity","0.4");
		// on mouse over
		$(".glow4, .glow5, .glow6, .glow7, .glow8, .glow9").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 0.9
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to back to .2
			$(this).stop().animate({
				opacity: 0.3
			}, "slow");
		});
	});



$(function() {

	// set opacity to 1 on page load
		$(".glow10").css("opacity","1");
		// on mouse over
		$(".glow10").hover(function () {
			// animate opacity to 0.3
			$(this).stop().animate({
				opacity: 0.3
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to back to 1
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		});
	});
