
// Images hovering animation 
$('.social-networks a').each(function () {
	$('<div class="fader" />').css('opacity', 0).prependTo(this);
}).hover(function () {
	$('img', this).stop().animate({
	marginLeft : 10
}, 250);

$('.fader', this).stop().animate({
  opacity : 0.15
});

}, function () {
	$('img', this).stop().animate({
	marginLeft : 0
}, 250);

$('.fader', this).stop().animate({
	opacity : 0
});
}).find('img').css('marginLeft', 0);