$(document).ready(function() {
	$(".item").children("img").each(function(){
		$(this).attr("title","");
	});
	$.listen("mouseover",".item",function() {
		var current = $(this).attr("href");
		$("a.item").stop();
		$("a.item").each(function() {
			if(current!= $(this).attr("href")) {
				$(this).fadeTo("slow",0.3);
			} else {
				$(this).stop().fadeTo("slow",1);
			}
		});
	});
	$.listen("mouseout",".item",function() {
		$("a.item").stop().fadeTo("slow",1);
	});
});