$('document').ready(function(){	
	
	var jAlertText = '';
	$.alerts.overlayOpacity = 0.1;
	$.alerts.overlayColor = '#000';
	
	$('.success_lists').each(function(index){

		text = $(this).html();
		if($('.error_lists').length >0)
			jAlertText += '<strong>-</strong> ';
		jAlertText += text.replace(/\n/g, '').replace(/<\/?[^>]+>/gi, '') + '<br />';

		jInfo(jAlertText,'Informacja');
	});

	$('.error_list').each(function(index){

		text = $(this).html();
		if($('.error_list').length >0)
			jAlertText += '<strong>-</strong> ';
		jAlertText += text.replace(/\n/g, '').replace(/<\/?[^>]+>/gi, '') + '<br />';

		jAlert(jAlertText,'Błąd');
	});
	
	$('.error_lists').each(function(index){

		text = $(this).html();
		if($('.error_lists').length >0)
			jAlertText += '<strong>-</strong> ';
		jAlertText += text.replace(/\n/g, '').replace(/<\/?[^>]+>/gi, '') + '<br />';

		jAlert(jAlertText,'Błąd');
	});

	
});


