$(document).ready(function(){
	$(".part img").fadeTo("fast", 1.0);
	$(".part img").hover(
		function(){
			$(".part img").stop().fadeTo("slow", 0.5);
			$(this).stop().fadeTo("slow", 1.0);
		},
		function(){
			$(".part img").stop().fadeTo("slow", 1.0);
	});
});
