$(function() {
	$('#toggle img').fadeTo(1, 0.4);

	$('#toggle .qrops, #toggle .qnups').hover(function() {
		$(this).addClass('shadow').children('a').children('img').stop().fadeTo(500, 1);
	}, function() {
		$(this).removeClass('shadow').children('a').children('img').stop().fadeTo(500, 0.4);
	});
});
