$(function(){
	$('[@sa=newspic]').each(function(){
		$(this).mouseover(function(){
			$(this).removeClass('Nimg');
			$(this).addClass('Nimg_a');
		});
		$(this).mouseout(function(){
			$(this).removeClass('Nimg_a');
			$(this).addClass('Nimg');
		});
	});

	$('[@sa=cat]').each(function(){
		$(this).mouseover(function(){
	      $("#tip_c_name").text($(this).attr('title'));
	      $("#tip_c_href").attr('href', $(this).attr('href'));
	      $("#tip_c_descr").html("&nbsp;"+$(this).next().html());
         if( $(this).next().attr('foto') != 0 ){
            $("#tip_c_img").attr('src', $(this).next().attr('foto'));
         }
		});
	});
});