$(function(){
$("#twitter img").animate({ opacity : 0.7 }, 1); 
		$("#twitter a").hover(function() {
			$("#twitter img").stop().animate({ opacity: 1.0 }, 500);
			}, function(){
			$("#twitter img").stop().animate({ opacity: 0.7 }, 500);
			});
$("#facebook img").animate({ opacity : 0.7 }, 1); 
		$("#facebook a").hover(function() {
			$("#facebook img").stop().animate({ opacity: 1.0 }, 500);
			}, function(){
			$("#facebook img").stop().animate({ opacity: 0.7 }, 500);
			});
$("#deviantart img").animate({ opacity : 0.7 }, 1); 
		$("#deviantart a").hover(function() {
			$("#deviantart img").stop().animate({ opacity: 1.0 }, 500);
			}, function(){
			$("#deviantart img").stop().animate({ opacity: 0.7 }, 500);
			});$("#google img").animate({ opacity : 0.7 }, 1); 		$("#google a").hover(function() {			$("#google img").stop().animate({ opacity: 1.0 }, 500);			}, function(){			$("#google img").stop().animate({ opacity: 0.7 }, 500);			});$("#shadowness img").animate({ opacity : 0.7 }, 1); 		$("#shadowness a").hover(function() {			$("#shadowness img").stop().animate({ opacity: 1.0 }, 500);			}, function(){			$("#shadowness img").stop().animate({ opacity: 0.7 }, 500);			});
$("#light img").animate({ opacity : 0.7 }, 1); 
		$("#light a").hover(function() {
			$("#light img").stop().animate({ opacity: 1.0 }, 500);
			}, function(){
			$("#light img").stop().animate({ opacity: 0.7 }, 500);
			});
$("#dark img").animate({ opacity : 0.7 }, 1); 
		$("#dark a").hover(function() {
			$("#dark img").stop().animate({ opacity: 1.0 }, 500);
			}, function(){
			$("#dark img").stop().animate({ opacity: 0.7 }, 500);
			});		
		   });
