
jQuery(function($) {

	$("a:not(.img-hover) img:not(.no-hover)")
		.live("mouseenter", function(event) {
			$(this).stop()
			//	.animate({ opacity: 0 }, 33)
				.animate({ opacity: 0.4 }, 200)
			;
		})
		.live("mouseout", function(event) {
			$(this).stop()
				.animate({ opacity: 1 }, 200)
			;
		})

	$("#special a:not(.img-hover) img:not(.no-hover)")
		.live("mouseenter", function(event) {
			$(this).stop()
			//	.animate({ opacity: 0 }, 33)
				.animate({ opacity: 0.8 }, 200)
			;
		})
		.live("mouseout", function(event) {
			$(this).stop()
				.animate({ opacity: 1 }, 200)
			;
		})
});
