$(document).ready(function(){
	$(".podswietlenie").fadeTo("fast", 0.8);
	$(".podswietlenie").hover(function(){
			$(this).fadeTo("fast", 1.0);
		},
		function(){
			$(this).fadeTo("fast", 0.8);
		}
	);
	
});
