
		//do dzialania z mootools
		jQuery.noConflict();

(function($) {

$(function() {


		
	$(".baner_01, .baner_02, .baner_03").css("opacity","0");
		
	$(".baner_01, .baner_02, .baner_03").hover(function () {
			
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		
		function () {
			
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});

	});

})(jQuery);



