$(document).ready(function() {
	$("img.ahover").fadeTo(0,1.0);
	$("img.ahover").hover(function() {
			$(this).fadeTo(100,0.7);
		},
		function() {
			$(this).fadeTo(75,1.0);
		});
});
