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