$(document).ready
(
	function()
	{
		$('a[rel="lightbox"]').lightBox
		(
			{
				imageLoading: '/editor/images/design/lightbox/lightbox-ico-loading.gif',
				imageBtnClose: '/editor/images/design/lightbox/lightbox-btn-close.gif',
				imageBtnPrev: '/editor/images/design/lightbox/lightbox-btn-prev.gif',
				imageBtnNext: '/editor/images/design/lightbox/lightbox-btn-next.gif',
				txtImage: 'Image',
				txtOf: 'of'
			}
		);
	}
);

function disable_button(button_id)
{
	$('#' + button_id).attr('disabled', 'disabled');
	$('#' + button_id).val('Čakajte prosím');
}

function check_email_address(email)
{
	var re = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
	if (!re.test(email))
	{
		return false;
	}
	else
	{
		return true;
	}
}
