$(function () {
	$('.image img').hover(function() {
		$(this).fadeTo("fast", 0.70);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(function () {
	$('.followIcons img').hover(function() {
		$(this).fadeTo("fast", 0.5);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});

$(function () {
	$('.svIndex img').hover(function() {
		$(this).fadeTo("fast", 0.75);
	}, function() {
		$(this).fadeTo("fast", 1);
	});
});




