// JavaScript Document
$(document).ready(function()
{
	$("#a3com_link").fadeTo(0,0.6);
	$("#a3com_link").hover(
		function(){ $(this).stop().fadeTo(200,1)},
		function(){ $(this).stop().fadeTo(200,0.6)}
	);
});
