$(document).ready(function ()
{
	if ($(".index_spec_div").length)
	{
		setTimeout("reload_spec()", 10000);
	}
	
	//$(".lightbox").lightBox();
	$('.lightbox').lightbox({
		fitToScreen: true,
		imageClickClose: false,
		displayTitle: false
	});
	
	$(".input_kod").focus(function ()
	{
		if ($(this).val()=='??')
		{
			$(this).val('');
		}
	});
	$(".input_kod").blur(function ()
	{
		if ($(this).val()=='')
		{
			$(this).val('??');
		}
	});
});

function reload_spec()
{
	var _div=$(".index_spec_div");
	var _all=$(_div).find(".special-box").attr("_all");
	var _id=$(_div).find(".special-box").attr("_id");
	
	if (_all>0)
	{
		$.get("get_random_spec.php", { no_id:_id }, function (html)
		{
			$(_div).html(html);
			setTimeout("reload_spec()", 10000);
		});
	}
}