$(document).ready(function(){
	$(function() { 
		$("#left a img,#center a img,#right a img,.pagetop a img,.hw a img,.pw a img").hover(
			function () {
				$(this).css("opacity","0.7");},
			function () {
				$(this).css("opacity","1");}
		);
	});
});
