$(document).ready(function() {
	$('.item a').hover(
		function(event) {
			$selected = $(this).children('.img-hover');
			$selected.css({'filter':'alpha(opacity=95)'});
			$selected.stop(true,true).fadeIn(150);
			//$('.img-hover').fadeOut(200);
			}
		,
		function(event) {
			//$('.img-hover').fadeIn(200);
			$(this).children('.img-hover').fadeOut(150);
			}
	);
});