// Inicializace.
$().ready(function() {
	$('#rboxpata img').css('opacity', 1.0);
	$('#rboxpata img').each(function() {
		$(this).hover(function() {
			$(this).stop().animate({ opacity: 0.5 }, 500);
		},
		function() {
			$(this).stop().animate({ opacity: 1.0 }, 500);
		});
	});
});

