$(document).ready(function(){

	$("#categories_ac table tr td img").css("opacity",0.5);
	$("#categories_ac table tr td").mouseover(function(){$(this).find("a img").stop().fadeTo(500,1);});
	$("#categories_ac table tr td").mouseout(function(){$(this).find("a img").stop().fadeTo(500,0.5);});
		
});