$(document).ready(function(){

	$('.img_box img').hover(
		function() {
			$(this).stop().animate({'opacity': '0.3'}, 400);			
		},
		function() {
			$(this).stop().animate({'opacity': '1'}, 400);			
		}
	);
	
});

