/*
	Notifications
*/

function notify(text, params) {
	$.jGrowl(text, params);
}

function notify(text) {
	$.jGrowl(text, {header: 'Сообщение'});
}

function notify_error(text) {
	$.jGrowl(text, {header: 'Ошибка'});
}