jQuery(function(){	
			
	jQuery("#jquery li").hover(function() { // Mouse over
		jQuery(this)
			.stop().fadeTo(300, 1)
			.siblings().find('a img').stop().fadeTo(300, 0.2);
			
		jQuery("a img", this)
			.stop()
			.animate({
				opacity:1,
			}, 300);
		
	}, function() { // Mouse out
		jQuery(this)
			.stop().fadeTo(300, 1)
			.siblings().find('a img').stop().fadeTo(300, 1);
			
		jQuery("a img", this)
			.stop()
			.animate({
				opacity:1,
			}, 300);
	});
});


