var modalOn = function () {
	if ( $('#modal').length == 0 ) {
		var html = '<div id="modal" class="dark-modal"></div><div id="loader" class="ajax-loader"><div class="note">Идет процесс загрузки<br />подождите пожалуйста<br /><span class="files"></span></div><img class="loading" src="/d/102240/t/images/loading.gif" alt="Загрузка"/><div class="process"></div></div>';

        $('body').append(html);

		$('#modal').css({
			width: $('body').width(),
			height: $('body').height()
		});
	}
};

var modalOff = function () {
	$('#modal').remove();
	$('#loader').remove();
};

$(function () {
	$('.q-tip').tooltipx();
});
