$(document).ready(function(){
						   $(".thumbs img").fadeTo("fast", 1.0);
						   $(".thumbs img").hover(function(){
						   $(this).fadeTo("fast", 0.7);
						   },function(){
						   $(this).fadeTo("fast", 1.0);
						   });
						   });

$(document).ready(function(){
						   $("#sponsorzy img").fadeTo("fast", 1.0);
						   $("#sponsorzy img").hover(function(){
						   $(this).fadeTo("fast", 0.7);
						   },function(){
						   $(this).fadeTo("fast", 1.0);
						   });
						   });

$(document).ready(function(){
						   $("#header img").fadeTo("fast", 1.0);
						   $("#header img").hover(function(){
						   $(this).fadeTo("fast", 0.7);
						   },function(){
						   $(this).fadeTo("fast", 1.0);
						   });
						   });