function highlight(div) {
	$(div + '> a > img').hover(function() {
		$(this).fadeTo("fast", 1);
	}, function() {
		$(this).fadeTo("slow", 0.4);
	}); 
}