$(function () {
	$('img.sponser').hover(function() {
		$(this).fadeTo("normal", 0.7);
	}, function() {
		$(this).fadeTo("normal", 1);
	});
});
