$(document).ready(function() 
{
	$("a img").mouseover(function()
	{
		$(this).animate({
			"opacity": 0.6
		},200);
	});
	$("a img").mouseout(function()
	{
		$(this).animate({
			"opacity": 1.0
		},200);
	});
	/*
	$("a").mouseover(function()
	{
		$(this).animate({
			"opacity": 0.6
		},200);
	});
	$("a").mouseout(function()
	{
		$(this).animate({
			"opacity": 1.0
		},200);
	});
	*/
});
