$ (function ()
	{
		$ ('.article-content a img').hover (
			function ()
			{
				$ (this).fadeTo (100, 1);
			},
			function ()
			{
				$ (this).fadeTo (100, .8);
			}
		);
		$ ('.authors a img').hover (
			function ()
			{
				$ (this).fadeTo (100, 1);
			},
			function ()
			{
				$ (this).fadeTo (100, .8);
			}
		);
	});