$().ready(function(){
		$(".hoverLink a img").hover(
			function(){
				$(this).fadeTo(200, 0.7);
			},
			function(){
				$(this).fadeTo(200, 1);
			}
		);
});

