$(document).ready(function(){
	
	// hover dla background w aktualnosciach
	$('.comment').hover(function() {
			$(this).css('background-image','url(fileadmin/templates/main/images/hover.gif)');
		},
		function() {
			$(this).css('background-image','none');
		}
	);
	
});