				$(document).ready(function(){
				$('a img').hover(function(){
					$(this).stop().animate({ opacity: '0.7' } , '100');
				} , function(){
					$(this).stop().animate({ opacity: '1'} , '100');
				});
			});
