$(function(){
				$('#banner').hover(function() {
							$('#banner img.hover').stop().animate({ "opacity": 0 },300);
						}, function() {
							$('#banner img.hover').stop().animate({ "opacity": 1 },300);
						});
});
